foo #33574
This file contains hidden or 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: "Test_Coverage" | |
| on: | |
| # Trigger if any of the conditions | |
| # 1. Daily via PIES scheduled workflow, or | |
| # 2. PR with a specific label (see below) | |
| # schedule: # NOTE: the schedule is dictated by PIES | |
| pull_request: | |
| types: [labeled] | |
| workflow_dispatch: | |
| workflow_call: | |
| env: | |
| CARGO_INCREMENTAL: "0" | |
| CARGO_TERM_COLOR: always | |
| # cancel redundant builds | |
| concurrency: | |
| # cancel redundant builds on PRs (only on PR, not on branches) | |
| group: ${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.ref) || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| rust-unit-coverage: | |
| if: | | |
| contains(github.event.pull_request.labels.*.name, 'CICD:run-coverage') || | |
| (github.event_name == 'workflow_dispatch' && github.ref_name == 'main') | |
| # Note the tests run slowly due to instrutmentation. It takes CI 10 hrs | |
| timeout-minutes: 720 | |
| runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # get all the history because cargo xtest --change-since origin/main requires it. | |
| - uses: aptos-labs/aptos-core/.github/actions/rust-setup@main | |
| - run: rustup component add llvm-tools-preview | |
| - uses: taiki-e/install-action@4fedbddde88aab767a45a011661f832d68202716 # pin@v2.33.28 | |
| with: | |
| tool: nextest,cargo-llvm-cov | |
| - run: docker run --detach -p 5432:5432 cimg/postgres:14.2 | |
| - run: cargo llvm-cov nextest --lcov --output-path lcov_unit.info -vv --ignore-run-fail --workspace --exclude smoke-test --exclude aptos-testcases | |
| env: | |
| INDEXER_DATABASE_URL: postgresql://postgres@localhost/postgres | |
| RUST_MIN_STACK: 33554432 # 32 MB of stack | |
| MVP_TEST_ON_CI: true | |
| Z3_EXE: /home/runner/bin/z3 | |
| CVC5_EXE: /home/runner/bin/cvc5 | |
| DOTNET_ROOT: /home/runner/.dotnet | |
| BOOGIE_EXE: /home/runner/.dotnet/tools/boogie | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: lcov_unit | |
| path: lcov_unit.info | |
| rust-smoke-coverage: | |
| if: | | |
| contains(github.event.pull_request.labels.*.name, 'CICD:run-coverage') || | |
| (github.event_name == 'workflow_dispatch' && github.ref_name == 'main') | |
| timeout-minutes: 720 # incremented from 240 due to execution time limit hit in cron | |
| runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # get all the history because cargo xtest --change-since origin/main requires it. | |
| - uses: aptos-labs/aptos-core/.github/actions/rust-setup@main | |
| - run: rustup component add llvm-tools-preview | |
| - uses: taiki-e/install-action@4fedbddde88aab767a45a011661f832d68202716 # pin@v2.33.28 | |
| with: | |
| tool: nextest,cargo-llvm-cov | |
| - run: cargo build --locked --package=aptos-node --features=failpoints --release && LLVM_PROFDATA_FLAGS="--failure-mode=all" LOCAL_SWARM_NODE_RELEASE=1 cargo llvm-cov nextest --lcov --output-path lcov_smoke.info -vv --ignore-run-fail --profile smoke-test -p smoke-test | |
| env: | |
| RUST_MIN_STACK: 33554432 | |
| MVP_TEST_ON_CI: true | |
| Z3_EXE: /home/runner/bin/z3 | |
| CVC5_EXE: /home/runner/bin/cvc5 | |
| DOTNET_ROOT: /home/runner/.dotnet | |
| BOOGIE_EXE: /home/runner/.dotnet/tools/boogie | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: lcov_smoke | |
| path: lcov_smoke.info | |
| upload-to-codecov: | |
| if: | | |
| contains(github.event.pull_request.labels.*.name, 'CICD:run-coverage') || | |
| (github.event_name == 'workflow_dispatch' && github.ref_name == 'main') | |
| && !cancelled() | |
| needs: [ rust-unit-coverage, rust-smoke-coverage ] | |
| runs-on: 2cpu-gh-ubuntu24-x64 | |
| continue-on-error: true # Don't fail if the codecov upload fails | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: lcov_unit | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: lcov_smoke | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3 | |
| with: | |
| files: lcov_unit.info,lcov_smoke.info | |
| fail_ci_if_error: true |