88 branches : ["master"]
99 pull_request :
1010 branches : ["master"]
11+ workflow_dispatch :
1112
1213concurrency :
1314 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -197,8 +198,8 @@ jobs:
197198 - name : Compile check at MSRV
198199 run : cargo check --all-features --tests
199200
200- rust-stable-test :
201- name : rust-stable-test
201+ rust-stable-test-linux-without-docker :
202+ name : rust-stable-test / linux-without-docker
202203 runs-on : ubuntu-latest
203204 steps :
204205 - uses : actions/checkout@v6
@@ -210,8 +211,59 @@ jobs:
210211
211212 - uses : taiki-e/install-action@nextest
212213
213- - name : Rust tests (stable)
214- run : cargo nextest run --all-features
214+ - name : Rust tests (stable, no docker)
215+ run : cargo nextest run --no-fail-fast --all-features
216+
217+ rust-stable-test-linux-with-docker :
218+ name : rust-stable-test / linux-with-docker
219+ runs-on : ubuntu-latest
220+ steps :
221+ - uses : actions/checkout@v6
222+
223+ - uses : actions-rust-lang/setup-rust-toolchain@v1
224+ with :
225+ toolchain : stable
226+ cache : true
227+
228+ - uses : taiki-e/install-action@nextest
229+
230+ - name : Pull language images for sandbox tests
231+ run : |
232+ docker pull python:3-slim
233+ docker pull node:20-slim
234+ docker pull eclipse-temurin:21-jre-jammy
235+ docker pull php:8-cli
236+
237+ - name : Smoke-test interpreter availability
238+ run : |
239+ docker run --rm python:3-slim python3 --version
240+ docker run --rm node:20-slim node --version
241+ docker run --rm eclipse-temurin:21-jre-jammy java -version
242+ docker run --rm php:8-cli php --version
243+
244+ - name : Rust tests with docker (sandbox escape gate)
245+ run : cargo nextest run --no-fail-fast --all-features --test dynamic_sandbox_escape --test dynamic_parity
246+
247+ escape-positive-control :
248+ name : escape-positive-control
249+ runs-on : ubuntu-latest
250+ steps :
251+ - uses : actions/checkout@v6
252+
253+ - uses : actions-rust-lang/setup-rust-toolchain@v1
254+ with :
255+ toolchain : stable
256+ cache : true
257+
258+ - uses : taiki-e/install-action@nextest
259+
260+ - name : Pull python image
261+ run : docker pull python:3-slim
262+
263+ - name : Escape positive control (gate wiring check)
264+ run : |
265+ cargo nextest run --no-fail-fast --all-features --test dynamic_sandbox_escape \
266+ -- --include-ignored positive_control_cap_sys_admin
215267
216268 cross-platform-smoke :
217269 name : cross-platform-smoke
@@ -234,7 +286,7 @@ jobs:
234286 run : cargo build --release --all-features
235287
236288 - name : Smoke tests
237- run : cargo nextest run --all-features --test integration_tests --test pattern_tests --test cli_validation_tests
289+ run : cargo nextest run --no-fail-fast -- all-features --test integration_tests --test pattern_tests --test cli_validation_tests
238290
239291 rust-beta-test :
240292 name : rust-beta-test
@@ -250,7 +302,7 @@ jobs:
250302 - uses : taiki-e/install-action@nextest
251303
252304 - name : Rust tests (beta)
253- run : cargo nextest run --all-features
305+ run : cargo nextest run --no-fail-fast -- all-features
254306
255307 cargo-package :
256308 name : cargo-package
@@ -299,16 +351,18 @@ jobs:
299351 cache : true
300352 cache-key : benchmark-gate-release
301353
354+ - uses : taiki-e/install-action@nextest
355+
302356 - name : Build benchmark + perf test binaries
303- run : cargo test --release --all-features --test benchmark_test --test perf_tests --no-run
357+ run : cargo nextest run --release --all-features --test benchmark_test --test perf_tests --no-run
304358
305359 - name : Accuracy regression gate (P/R/F1)
306- run : cargo test -- release --all-features --test benchmark_test -- -- ignored --nocapture benchmark_evaluation
360+ run : cargo nextest run --no-fail-fast -- release --all-features --test benchmark_test --run- ignored only --no-capture benchmark_evaluation
307361
308362 - name : Performance regression gate
309363 env :
310364 NYX_CI_BENCH : " 1"
311- run : cargo test -- release --all-features --test perf_tests -- --nocapture
365+ run : cargo nextest run --no-fail-fast -- release --all-features --test perf_tests --no-capture
312366
313367 - name : Upload benchmark results
314368 if : always()
@@ -317,3 +371,34 @@ jobs:
317371 name : benchmark-results
318372 path : tests/benchmark/results/latest.json
319373 if-no-files-found : warn
374+
375+ corpus-marker-audit :
376+ name : corpus-marker-audit
377+ runs-on : ubuntu-latest
378+ steps :
379+ - uses : actions/checkout@v6
380+
381+ - uses : actions/setup-python@v5
382+ with :
383+ python-version : " 3.12"
384+
385+ - name : Marker collision audit (§16.3)
386+ run : python3 scripts/corpus_dashboard.py
387+ # Exits non-zero if any oracle marker from one cap appears in another
388+ # cap's payload bytes. This catches cross-cap oracle collisions that
389+ # would cause false-positive confirmed verdicts.
390+
391+ - uses : actions-rust-lang/setup-rust-toolchain@v1
392+ with :
393+ toolchain : stable
394+ cache : true
395+
396+ - uses : taiki-e/install-action@nextest
397+
398+ - name : Corpus unit tests (no_marker_collisions, all_payloads_have_fixture_paths)
399+ run : cargo nextest run --no-fail-fast --lib -p nyx-scanner dynamic::corpus
400+ env :
401+ RUST_LOG : error
402+
403+ - name : Corpus dashboard sync check (Python/Rust payload table parity)
404+ run : python3 scripts/check_corpus_sync.py
0 commit comments