Skip to content

Commit 8dff1e7

Browse files
committed
Limit memory used in fuzzing
1 parent 6d7bb71 commit 8dff1e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/fuzz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
# Build and then run the fuzz target.
3737
- run: cargo fuzz build ${{ matrix.fuzz_target }} -s none
38-
- run: cargo fuzz run ${{ matrix.fuzz_target }} -s none -- -max_total_time=${{ env.FUZZ_TIME }}
38+
- run: cargo fuzz run ${{ matrix.fuzz_target }} -s none -- -max_total_time=${{ env.FUZZ_TIME }} -rss_limit_mb=1024
3939

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

0 commit comments

Comments
 (0)