deps: update cargo lock #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic test run | |
on: | |
push: | |
branches: [ main, develop-m4 ] | |
paths: | |
- Cargo.toml | |
- Cargo.lock | |
- move-mutator/** | |
- move-spec-test/** | |
- move-mutation-test/** | |
- .github/workflows/run-tests.yml | |
pull_request: | |
branches: [ main, develop-m4 ] | |
paths: | |
- Cargo.toml | |
- Cargo.lock | |
- move-mutator/** | |
- move-spec-test/** | |
- move-mutation-test/** | |
- .github/workflows/run-tests.yml | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
basic-test-run: | |
runs-on: self-hosted | |
name: Basic ci-check for tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install required deps | |
run: sudo apt-get install libudev-dev libdw-dev lld libpq-dev libssl-dev pkg-config lsof build-essential ca-certificates clang curl git --no-install-recommends --assume-yes | |
- name: Get aptos-core | |
shell: bash | |
run: git clone https://github.com/aptos-labs/aptos-core.git | |
- name: Install related tools and prover dependencies | |
shell: bash | |
run: aptos-core/scripts/dev_setup.sh -b -p -r -y -P -t -k | |
- name: Prepare move prover tooling. | |
shell: bash | |
run: | | |
echo 'Z3_EXE='/home/$USER/bin/z3 | tee -a $GITHUB_ENV | |
echo 'CVC5_EXE='/home/$USER/bin/cvc5 | tee -a $GITHUB_ENV | |
echo 'DOTNET_ROOT='/home/$USER/.dotnet/ | tee -a $GITHUB_ENV | |
echo 'BOOGIE_EXE='/home/$USER/.dotnet/tools/boogie | tee -a $GITHUB_ENV | |
echo 'MVP_TEST_ON_CI'='1' | tee -a $GITHUB_ENV | |
echo "/home/$USER/bin" | tee -a $GITHUB_PATH | |
echo "/home/$USER/.dotnet" | tee -a $GITHUB_PATH | |
echo "/home/$USER/.dotnet/tools" | tee -a $GITHUB_PATH | |
- name: Setup Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: stable | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Run normal tests in the release mode due to test duration speed bump. | |
run: cargo nextest run -r --profile ci |