File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -183,15 +183,19 @@ jobs:
183
183
include :
184
184
- target : x86_64-unknown-linux-gnu
185
185
use_zig : false
186
+ fuzzer : true
186
187
zig_args : " "
187
188
- target : armv7-unknown-linux-gnueabihf
188
189
use_zig : true
190
+ fuzzer : false
189
191
zig_args : " -target arm-linux-gnueabihf -mcpu=generic+v7a+vfp3-d32+thumb2-neon -g"
190
192
- target : x86_64-unknown-linux-musl
191
193
use_zig : true
194
+ fuzzer : false
192
195
zig_args : " -target x86_64-linux-musl"
193
196
- target : x86_64-apple-darwin
194
197
use_zig : true
198
+ fuzzer : false
195
199
zig_args : " -target x86_64-macos-gnu -g"
196
200
runs-on : ubuntu-latest
197
201
steps :
@@ -239,11 +243,13 @@ jobs:
239
243
with :
240
244
command : clippy
241
245
args : --target ${{matrix.target}} --manifest-path ./fuzz/Cargo.toml --all-targets -- -D warnings
246
+ if : ${{matrix.fuzzer}}
242
247
- name : Run clippy (fuzz_rand_shim)
243
248
uses : actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505
244
249
with :
245
250
command : clippy
246
251
args : --target ${{matrix.target}} --manifest-path ./fuzz/fuzz_rand_shim/Cargo.toml --all-targets -- -D warnings
252
+ if : ${{matrix.fuzzer}}
247
253
248
254
fuzz :
249
255
name : Smoke-test fuzzing targets
@@ -276,6 +282,7 @@ jobs:
276
282
done
277
283
278
284
audit-dependencies :
285
+ name : Audit dependencies
279
286
runs-on : ubuntu-latest
280
287
steps :
281
288
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
You can’t perform that action at this time.
0 commit comments