Skip to content

Commit 8214be2

Browse files
committed
use --jobs 4 for the fuzzers
1 parent 0134189 commit 8214be2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
else
226226
features="${{ matrix.features }}"
227227
fi
228-
RUST_BACKTRACE=1 cargo fuzz run --no-default-features --features="$features" $target -- -max_total_time=10
228+
RUST_BACKTRACE=1 cargo fuzz run --jobs 4 --no-default-features --features="$features" $target -- -max_total_time=10
229229
done
230230
231231
fuzz-code-coverage:
@@ -265,7 +265,7 @@ jobs:
265265
# prevents `cargo fuzz coverage` from rebuilding everything
266266
RUSTFLAGS: "-C instrument-coverage"
267267
run: |
268-
cargo fuzz run ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}} -- -max_total_time=20
268+
cargo fuzz run --jobs 4 ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}} -- -max_total_time=20
269269
- name: Fuzz codecov
270270
run: |
271271
cargo fuzz coverage ${{matrix.features}} ${{matrix.fuzz_target}} ${{matrix.corpus}}

0 commit comments

Comments
 (0)