Skip to content

Commit 74114e4

Browse files
committed
Tweak CI for excluding cortex-m-pac on MSRV
1 parent 6f64907 commit 74114e4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,8 @@ jobs:
3030
with:
3131
toolchain: ${{ matrix.rust }}
3232
- name: Run tests
33+
if: ${{ matrix.rust != '1.61.0' }}
3334
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --features cortex-m/critical-section-single-core
35+
- name: Run tests for 1.61.0 (need to exclude cortex-m-pac)
36+
if: ${{ matrix.rust == '1.61.0' }}
37+
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --exclude cortex-m-pac --features cortex-m/critical-section-single-core

0 commit comments

Comments
 (0)