probe: futex tracing pinpoints 3 idle waiters parked on snapshot work… #307
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: cargo fmt | |
| run: cargo fmt --all -- --check | |
| - name: cargo clippy | |
| run: cargo clippy --all-targets --all-features -- -D warnings | |
| - name: cargo build | |
| run: cargo build --all | |
| - name: cargo test | |
| run: cargo test --all | |
| bench-python: | |
| # Pure-stdlib Python tests for bench/pause-window/. No firecracker | |
| # or daemon needed — the analyzer runs on synthetic event lists. | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: analyze.py unit tests | |
| working-directory: bench/pause-window | |
| run: python -m unittest test_analyze.py -v | |
| - name: agent / echo_server syntax | |
| working-directory: bench/pause-window | |
| run: | | |
| python -m py_compile agent.py | |
| python -m py_compile echo_server.py | |
| - name: run.sh shellcheck-style parse | |
| run: bash -n bench/pause-window/run.sh |