Add noise bench #2551
Workflow file for this run
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: Integration Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Detect companion line | |
| id: detect | |
| env: | |
| BODY_NEW: ${{ github.event.pull_request.body }} | |
| BODY_OLD: ${{ github.event.changes.body.from || '' }} | |
| ACTION: ${{ github.event.action }} | |
| run: | | |
| OLD_COMPANION=$(printf "%s" "$BODY_OLD" \ | |
| | grep -Eo 'companion https://github\.com/stratum-mining/sv2-apps/pull/[0-9]+' \ | |
| || true) | |
| NEW_COMPANION=$(printf "%s" "$BODY_NEW" \ | |
| | grep -Eo 'companion https://github\.com/stratum-mining/sv2-apps/pull/[0-9]+' \ | |
| || true) | |
| if [ "$ACTION" = "edited" ]; then | |
| if [ "$OLD_COMPANION" != "$NEW_COMPANION" ]; then | |
| echo "should_run_integration_test=true" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "should_run_integration_test=false" >> "$GITHUB_OUTPUT" | |
| fi | |
| else | |
| echo "should_run_integration_test=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| COMPANION_NUM=$(printf "%s" "$NEW_COMPANION" | grep -Eo '[0-9]+$' || true) | |
| echo "COMPANION_PR_NUMBER=${COMPANION_NUM:-}" >> "$GITHUB_ENV" | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/[email protected] | |
| id: toolchain | |
| # NOTE: A repo-local `rust-toolchain.toml` is still respected by rustup. | |
| # `dtolnay/rust-toolchain` installs the requested toolchain but does not | |
| # automatically override it. | |
| - name: Override toolchain | |
| run: | | |
| rustup override set ${{ steps.toolchain.outputs.name }} | |
| - name: Install capnproto (Ubuntu) | |
| if: steps.detect.outputs.should_run_integration_test == 'true' && matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get install -y capnproto libcapnp-dev | |
| - name: Install capnproto (macOS) | |
| if: steps.detect.outputs.should_run_integration_test == 'true' && matrix.os == 'macos-latest' | |
| run: | | |
| brew install capnp | |
| - name: Install cargo-nextest | |
| run: cargo install cargo-nextest --version 0.9.100 --locked | |
| - name: Run Integration Tests Script | |
| if: steps.detect.outputs.should_run_integration_test == 'true' | |
| run: ./scripts/run-integration-tests.sh | |