Skip to content

Commit 36950fc

Browse files
committed
CI: build defmt feature only on stable rust
the MSRV of `defmt` does not guarantee that it builds on older rust versions, accordingly we need to skip CI for older versions for feature combinations where `defmt` is enabled.
1 parent a0fc6fa commit 36950fc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/CI.yml

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
matrix:
1616
rust: [1.62.0, stable]
1717
features: ['use_alloc', 'use_alloc,defmt', 'use_heapless', 'use_heapless,defmt']
18+
exclude:
19+
- rust: 1.62.0
20+
features: 'use_alloc,defmt'
21+
- rust: 1.62.0
22+
features: 'use_heapless,defmt'
1823
runs-on: ubuntu-latest
1924
steps:
2025
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)