File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -293,18 +293,12 @@ jobs:
293
293
# prevents `cargo fuzz coverage` from rebuilding everything
294
294
RUSTFLAGS : " -C instrument-coverage"
295
295
run : |
296
- cargo fuzz run --target $(rustc --print host-tuple) ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}} -- -max_total_time=10
296
+ cargo fuzz run --target x86_64-unknown-linux-gnu ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}} -- -max_total_time=10
297
297
- name : Fuzz codecov
298
298
run : |
299
- cargo fuzz coverage --target $(rustc --print host-tuple) ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}}
300
- ls target
301
- ls target/x86_64-unknown-linux-gnu
302
- ls target/x86_64-unknown-linux-gnu/coverage
303
- ls target/x86_64-unknown-linux-gnu/coverage/x86_64-unknown-linux-gnu
304
- ls target/x86_64-unknown-linux-gnu/coverage/x86_64-unknown-linux-gnu/release
305
- ls target/x86_64-unknown-linux-gnu/coverage/x86_64-unknown-linux-gnu/release/uncompress
306
- $(rustc --print sysroot)/lib/rustlib/$(rustc --print host-tuple)/bin/llvm-cov export -Xdemangler=rustfilt \
307
- target/$(rustc --print host-tuple)/coverage/$(rustc --print host-tuple)/release/${{matrix.fuzz_target}} \
299
+ cargo fuzz coverage --target x86_64-unknown-linux-gnu ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}}
300
+ $(rustc --print sysroot)/lib/rustlib/x86_64-unknown-linux-gnu/bin/llvm-cov export -Xdemangler=rustfilt \
301
+ target/x86_64-unknown-linux-musl/coverage/x86_64-unknown-linux-gnu/release/${{matrix.fuzz_target}} \
308
302
-instr-profile=fuzz/coverage/${{matrix.fuzz_target}}/coverage.profdata \
309
303
--format=lcov \
310
304
-ignore-filename-regex="\.cargo|\.rustup|fuzz_targets" > lcov.info
You can’t perform that action at this time.
0 commit comments