File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
+ mcu :
11
+ - stm32f401
12
+ - stm32f405
13
+ - stm32f407
14
+ - stm32f410
15
+ - stm32f411
16
+ - stm32f412
17
+ - stm32f413
18
+ - stm32f415
19
+ - stm32f417
20
+ - stm32f423
21
+ - stm32f427
22
+ - stm32f429
23
+ - stm32f437
24
+ - stm32f439
25
+ - stm32f446
26
+ - stm32f469
27
+ - stm32f479
10
28
rust :
11
29
- stable
12
30
include :
13
31
- rust : nightly
32
+ mcu : stm32f479
14
33
experimental : true
15
34
16
35
steps :
21
40
toolchain : ${{ matrix.rust }}
22
41
target : thumbv7em-none-eabihf
23
42
override : true
24
-
25
- - name : Regular build for all supported MCU models
26
- run : python tools/check.py
27
-
28
43
- uses : actions-rs/cargo@v1
29
44
with :
30
45
command : build
31
- args : --examples -- features=stm32f401 ,rt,usb_fs --release
46
+ args : --features=${{ matrix.mcu }} ,rt,usb_fs
You can’t perform that action at this time.
0 commit comments