File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed
Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change 1313 - " .github/workflows/build-and-test-rust.yml"
1414
1515jobs :
16- build :
17- runs-on : aligned-runner
18-
19- steps :
20- - uses : actions/checkout@v4
21-
22- - name : Set up Rust
23- uses : actions-rs/toolchain@v1
24- with :
25- toolchain : 1.86.0
26- components : rustfmt, clippy
27- override : true
28-
2916 test :
3017 runs-on : aligned-runner
31- needs : build
3218 steps :
3319 - name : Checkout code
3420 uses : actions/checkout@v4
4733 key : ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }}
4834 restore-keys : |
4935 ${{ runner.os }}-rust-
50-
51- - name : Debug — dump expanded lib with # [cfg(test)]
52- working-directory : crates
53- env :
54- RUSTFLAGS : --cfg test
55- run : |
56- cargo rustc -p aligned-batcher --lib -- -Zunstable-options --pretty=expanded > expanded.rs
57- echo "=== searching for try_build_batch in expanded.rs ==="
58- rg -n 'fn\s+try_build_batch' expanded.rs || true
59- rg -n '__exposed_try_build_batch_for_tests' expanded.rs || true
6036
6137 - name : Run Batcher tests
6238 run : |
You can’t perform that action at this time.
0 commit comments