Skip to content

Commit

Permalink
Tweak CI for excluding cortex-m-pac on MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
romancardenas committed Oct 19, 2024
1 parent 6f64907 commit 74114e4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
- name: Run tests
if: ${{ matrix.rust != '1.61.0' }}
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --features cortex-m/critical-section-single-core
- name: Run tests for 1.61.0 (need to exclude cortex-m-pac)
if: ${{ matrix.rust == '1.61.0' }}
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --exclude cortex-m-pac --features cortex-m/critical-section-single-core

0 comments on commit 74114e4

Please sign in to comment.