Skip to content

Commit 4bce3b6

Browse files
committed
ci: add runners for MPMC crossbeam implementation
1 parent 5025ae5 commit 4bce3b6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ jobs:
5050
- name: Run miri
5151
run: MIRIFLAGS=-Zmiri-ignore-leaks cargo miri test --features="alloc,defmt,mpmc_large,portable-atomic-critical-section,serde,ufmt,bytes,zeroize"
5252

53+
- name: Run miri (mpmc crossbeam)
54+
run: MIRIFLAGS=-Zmiri-ignore-leaks cargo miri test --features="alloc,defmt,mpmc_large,mpmc_crossbeam,portable-atomic-critical-section,serde,ufmt,bytes,zeroize"
55+
5356
# Run cargo test
5457
test:
5558
name: test
@@ -86,6 +89,9 @@ jobs:
8689
- name: Run cargo test
8790
run: cargo test --features="alloc,defmt,mpmc_large,portable-atomic-critical-section,serde,ufmt,bytes,zeroize"
8891

92+
- name: Run cargo test (mpmc crossbeam)
93+
run: cargo test --features="alloc,defmt,mpmc_large,mpmc_crossbeam,portable-atomic-critical-section,serde,ufmt,bytes,zeroize"
94+
8995
# Run cargo fmt --check
9096
style:
9197
name: style

0 commit comments

Comments
 (0)