File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -90,16 +90,21 @@ jobs:
90
90
run : |
91
91
cargo build --release --target=${{ matrix.target }} --features ${{ matrix.features }}
92
92
93
- build-no-ptp :
94
- name : build-no-ptp
93
+ build-feature-mixer :
94
+ name : build-feature-mixer
95
95
runs-on : ubuntu-20.04
96
96
strategy :
97
97
matrix :
98
98
target :
99
99
- x86_64-unknown-linux-gnu
100
+ features :
101
+ - " ptp,async-await"
102
+ - " ptp"
103
+ - " async-await"
104
+ - " "
100
105
toolchain :
101
106
- stable
102
- features :
107
+ mcu :
103
108
- stm32f107
104
109
- stm32f407
105
110
- stm32f745
@@ -115,7 +120,7 @@ jobs:
115
120
116
121
- name : cargo build
117
122
run : |
118
- cargo build --release --target=${{ matrix.target }} --features ${{ matrix.features }} --no-default-features
123
+ cargo build --release --target=${{ matrix.target }} --features " ${{ matrix.mcu }}" -- features "${{ matrix.features }}" --no-default-features
119
124
120
125
# Test that all of the examples compile
121
126
# for stm32f429
@@ -204,7 +209,7 @@ jobs:
204
209
- test
205
210
- examples
206
211
- examples-common
207
- - build-no-ptp
212
+ - build-feature-mixer
208
213
runs-on : ubuntu-20.04
209
214
steps :
210
215
- name : Mark the job as a success
You can’t perform that action at this time.
0 commit comments