Skip to content

Commit d5538cf

Browse files
committed
remove r/s from ci
"support" is extremely minimal
1 parent fd895bd commit d5538cf

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
ci:
1010
runs-on: ubuntu-latest
1111
strategy:
12+
fail-fast: false
1213
matrix: # All permutations of {rust, mcu}
1314
rust:
1415
- stable
@@ -29,8 +30,8 @@ jobs:
2930
- stm32l486
3031
- stm32l496
3132
- stm32l4a6
32-
- stm32l4r9
33-
- stm32l4s9
33+
#- stm32l4r9
34+
#- stm32l4s9
3435

3536
steps:
3637
- uses: actions/checkout@v2
@@ -40,12 +41,14 @@ jobs:
4041
toolchain: ${{ matrix.rust }}
4142
target: thumbv7em-none-eabihf
4243
override: true
43-
- uses: actions-rs/cargo@v1
44+
- name: build
45+
uses: actions-rs/cargo@v1
4446
with:
4547
use-cross: true
4648
command: build
4749
args: --verbose --release --examples --target thumbv7em-none-eabihf --features rt,unproven,${{ matrix.mcu }}
48-
- uses: actions-rs/cargo@v1
50+
- name: test
51+
uses: actions-rs/cargo@v1
4952
with:
5053
command: test
5154
args: --lib --target x86_64-unknown-linux-gnu --features rt,unproven,${{ matrix.mcu }}

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ pub mod traits;
123123

124124
#[cfg(not(any(feature = "stm32l4r9", feature = "stm32l4s9",)))]
125125
pub mod adc;
126+
#[cfg(not(any(feature = "stm32l4r9", feature = "stm32l4s9",)))]
126127
#[cfg(not(any(feature = "stm32l412",)))]
127128
pub mod can;
128129
#[cfg(not(any(feature = "stm32l4r9", feature = "stm32l4s9",)))]

0 commit comments

Comments
 (0)