Skip to content

Commit fe58d44

Browse files
committed
Merge remote-tracking branch 'origin/update-github-workflows' into better-mkdoc-navigation
2 parents 15bf5b7 + 88d7afe commit fe58d44

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/checks.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,19 @@ jobs:
183183
include:
184184
- target: x86_64-unknown-linux-gnu
185185
use_zig: false
186+
fuzzer: true
186187
zig_args: ""
187188
- target: armv7-unknown-linux-gnueabihf
188189
use_zig: true
190+
fuzzer: false
189191
zig_args: "-target arm-linux-gnueabihf -mcpu=generic+v7a+vfp3-d32+thumb2-neon -g"
190192
- target: x86_64-unknown-linux-musl
191193
use_zig: true
194+
fuzzer: false
192195
zig_args: "-target x86_64-linux-musl"
193196
- target: x86_64-apple-darwin
194197
use_zig: true
198+
fuzzer: false
195199
zig_args: "-target x86_64-macos-gnu -g"
196200
runs-on: ubuntu-latest
197201
steps:
@@ -239,11 +243,13 @@ jobs:
239243
with:
240244
command: clippy
241245
args: --target ${{matrix.target}} --manifest-path ./fuzz/Cargo.toml --all-targets -- -D warnings
246+
if: ${{matrix.fuzzer}}
242247
- name: Run clippy (fuzz_rand_shim)
243248
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505
244249
with:
245250
command: clippy
246251
args: --target ${{matrix.target}} --manifest-path ./fuzz/fuzz_rand_shim/Cargo.toml --all-targets -- -D warnings
252+
if: ${{matrix.fuzzer}}
247253

248254
fuzz:
249255
name: Smoke-test fuzzing targets
@@ -276,6 +282,7 @@ jobs:
276282
done
277283
278284
audit-dependencies:
285+
name: Audit dependencies
279286
runs-on: ubuntu-latest
280287
steps:
281288
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

0 commit comments

Comments
 (0)