Skip to content

Commit 2e21c4e

Browse files
committed
fix
1 parent c802c22 commit 2e21c4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
- run: cargo install --root "${{ runner.tool_cache }}/cargo-fuzz" --version ${{ env.CARGO_FUZZ_VERSION }} cargo-fuzz --locked
4040

4141
# Build and then run the fuzz target.
42-
- run: RUSTFLAGS=-Zsanitizer=address cargo fuzz build ${{ matrix.fuzz_target }}
43-
- run: RUSTFLAGS=-Zsanitizer=address cargo fuzz run ${{ matrix.fuzz_target }} -- -max_total_time=${{ env.FUZZ_TIME }}
42+
- run: RUSTFLAGS=-Zsanitizer=address cargo +nightly fuzz build ${{ matrix.fuzz_target }}
43+
- run: RUSTFLAGS=-Zsanitizer=address cargo +nightly fuzz run ${{ matrix.fuzz_target }} -- -max_total_time=${{ env.FUZZ_TIME }}
4444

4545
# Upload fuzzing artifacts on failure for post-mortem debugging.
4646
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)