File tree Expand file tree Collapse file tree 3 files changed +27
-7
lines changed Expand file tree Collapse file tree 3 files changed +27
-7
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ name: Continuous integration
8
8
jobs :
9
9
ci :
10
10
runs-on : ubuntu-latest
11
- continue-on-error : ${{ matrix.experimental }}
12
11
strategy :
13
12
matrix : # All permutations of {rust, mcu}
14
13
rust :
20
19
- stm32h743v
21
20
- stm32h753v
22
21
- stm32h747cm7
23
- experimental : [false]
24
- include : # One additional job, as follows:
25
- - rust : nightly
26
- mcu : stm32h743v
27
- experimental : true
28
22
29
23
steps :
30
24
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ name: Clippy
8
8
jobs :
9
9
clippy_check :
10
10
runs-on : ubuntu-latest
11
- continue-on-error : true
12
11
steps :
13
12
- uses : actions/checkout@v2
14
13
- uses : actions-rs/toolchain@v1
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [ master ] # Do not run on staging / trying
4
+ pull_request :
5
+
6
+ name : Nightly rust
7
+
8
+ jobs :
9
+ ci :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : actions-rs/toolchain@v1
14
+ with :
15
+ profile : minimal
16
+ toolchain : nightly
17
+ target : thumbv7em-none-eabihf
18
+ override : true
19
+ - uses : actions-rs/cargo@v1
20
+ with :
21
+ use-cross : true
22
+ command : build
23
+ args : --verbose --release --examples --target thumbv7em-none-eabihf --features rt,stm32h743v
24
+ - uses : actions-rs/cargo@v1
25
+ with :
26
+ command : test
27
+ args : --lib --target x86_64-unknown-linux-gnu --features rt,stm32h743v
You can’t perform that action at this time.
0 commit comments