CI: Restrict Claude Code triggers to users with write-access (#874) #2247
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: Checks | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: [develop] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| lint_and_test: | |
| name: Lint and test | |
| runs-on: warp-ubuntu-latest-x64-32x | |
| env: | |
| # Set features for the Makefile | |
| FEATURES: ${{ matrix.features }} | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| features: | |
| - "" | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| # https://github.com/dtolnay/rust-toolchain | |
| - name: Setup rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| # https://github.com/swatinem/rust-cache | |
| - name: Run Swatinem/rust-cache@v2 | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| # https://github.com/Mozilla-Actions/sccache-action | |
| - name: Run sccache-action | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Set sccache env vars | |
| run: | | |
| echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | |
| echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | |
| - name: Install Foundry toolchain | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: Install native dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev protobuf-compiler | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test | |
| - name: Validate config files | |
| run: make validate-config | |
| integration: | |
| name: Integration tests | |
| runs-on: warp-ubuntu-latest-x64-32x | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| features: | |
| - "" | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| # https://github.com/dtolnay/rust-toolchain | |
| - name: Setup rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: Download builder playground | |
| uses: flashbots/flashbots-toolchain@v0.1 | |
| with: | |
| builder-playground: v0.3.1 | |
| # https://github.com/swatinem/rust-cache | |
| - name: Run Swatinem/rust-cache@v2 | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| # https://github.com/Mozilla-Actions/sccache-action | |
| - name: Run sccache-action | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Set sccache env vars | |
| run: | | |
| echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV | |
| echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | |
| - name: Install native dependencies | |
| run: sudo apt-get update && sudo apt-get install -y protobuf-compiler | |
| - name: Build the rbuilder | |
| run: cargo build --features="${{ matrix.features }}" | |
| - name: Run the playground | |
| run: | | |
| builder-playground start l1 --use-native-reth > /tmp/playground.log 2>&1 & | |
| PLAYGROUND_PID=$! | |
| echo "Waiting for all services to be healthy..." | |
| timeout=60 # 1 minutes timeout | |
| elapsed=0 | |
| while [ $elapsed -lt $timeout ]; do | |
| if grep -q "All services are healthy" /tmp/playground.log 2>/dev/null; then | |
| echo "All services are healthy!" | |
| break | |
| fi | |
| sleep 2 | |
| elapsed=$((elapsed + 2)) | |
| done | |
| if [ $elapsed -ge $timeout ]; then | |
| echo "Timeout waiting for services to be healthy" | |
| echo "Last 50 lines of playground output:" | |
| tail -n 50 /tmp/playground.log || true | |
| kill $PLAYGROUND_PID 2>/dev/null || true | |
| exit 1 | |
| fi | |
| echo "Playground is running (PID: $PLAYGROUND_PID)" | |
| - name: Run integration tests with flags | |
| run: cargo test --features="${{ matrix.features }}" --package rbuilder --lib -- integration --test-threads=1 | |
| env: | |
| PLAYGROUND: TRUE | |
| - name: Aggregate playground logs | |
| # This steps fails if the test fails early and the playground logs dir has not been created | |
| if: ${{ failure() }} | |
| run: | | |
| mkdir /tmp/playground-logs | |
| mv $HOME/.local/state/builder-playground/devnet/logs /tmp/playground-logs | |
| mv integration_logs /tmp/playground-logs | |
| - name: Archive playground logs | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ failure() }} | |
| with: | |
| name: playground-logs | |
| path: /tmp/playground-logs | |
| retention-days: 5 | |
| # Find unused dependencies, this will fail if any are found. | |
| cargo-shear: | |
| runs-on: warp-ubuntu-latest-x64-32x | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install cargo-binstall | |
| uses: cargo-bins/cargo-binstall@main | |
| - name: Install cargo-shear | |
| run: cargo binstall --no-confirm cargo-shear | |
| - name: Run cargo shear | |
| run: cargo shear |