Skip to content

Commit 45db6f1

Browse files
committed
Further simplify CI
1 parent 0065031 commit 45db6f1

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

.github/workflows/build-and-test-rust.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,8 @@ on:
1313
- ".github/workflows/build-and-test-rust.yml"
1414

1515
jobs:
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
@@ -47,16 +33,6 @@ jobs:
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: |

0 commit comments

Comments
 (0)