We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b6b50a commit 2bbf63cCopy full SHA for 2bbf63c
1 file changed
.github/workflows/fuzz.yml
@@ -26,14 +26,14 @@ jobs:
26
key: cache-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
27
- uses: actions-rs/toolchain@v1
28
with:
29
- toolchain: nightly
+ toolchain: stable
30
override: true
31
profile: minimal
32
- run: cargo install honggfuzz
33
if: steps.cache-fuzz.outputs.cache-hit != 'true'
34
- run: echo "HFUZZ_RUN_ARGS=\"--run_time 30 --exit_upon_crash -v -f hfuzz_input/${{ matrix.fuzz_target }}/input\"" >> $GITHUB_ENV
35
- name: fuzz
36
- run: cd fuzz && cargo +nightly hfuzz run ${{ matrix.fuzz_target }}
+ run: cd fuzz && cargo hfuzz run ${{ matrix.fuzz_target }}
37
- run: echo "${{ matrix.fuzz_target }}.rs" >executed_${{ matrix.fuzz_target }}
38
- uses: actions/upload-artifact@v2
39
0 commit comments