File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 9
9
ci :
10
10
runs-on : ubuntu-latest
11
11
strategy :
12
+ fail-fast : false
12
13
matrix : # All permutations of {rust, mcu}
13
14
rust :
14
15
- stable
29
30
- stm32l486
30
31
- stm32l496
31
32
- stm32l4a6
32
- - stm32l4r9
33
- - stm32l4s9
33
+ # - stm32l4r9
34
+ # - stm32l4s9
34
35
35
36
steps :
36
37
- uses : actions/checkout@v2
@@ -40,12 +41,14 @@ jobs:
40
41
toolchain : ${{ matrix.rust }}
41
42
target : thumbv7em-none-eabihf
42
43
override : true
43
- - uses : actions-rs/cargo@v1
44
+ - name : build
45
+ uses : actions-rs/cargo@v1
44
46
with :
45
47
use-cross : true
46
48
command : build
47
49
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
49
52
with :
50
53
command : test
51
54
args : --lib --target x86_64-unknown-linux-gnu --features rt,unproven,${{ matrix.mcu }}
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ pub mod traits;
123
123
124
124
#[ cfg( not( any( feature = "stm32l4r9" , feature = "stm32l4s9" , ) ) ) ]
125
125
pub mod adc;
126
+ #[ cfg( not( any( feature = "stm32l4r9" , feature = "stm32l4s9" , ) ) ) ]
126
127
#[ cfg( not( any( feature = "stm32l412" , ) ) ) ]
127
128
pub mod can;
128
129
#[ cfg( not( any( feature = "stm32l4r9" , feature = "stm32l4s9" , ) ) ) ]
You can’t perform that action at this time.
0 commit comments