We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9416b commit fbb78afCopy full SHA for fbb78af
2 files changed
.github/workflows/fuzzing.yml
@@ -18,6 +18,7 @@ jobs:
18
runs-on: ${{ matrix.os }}
19
name: Fuzzing
20
strategy:
21
+ fail-fast: false
22
matrix:
23
os: [ubuntu-22.04, macos-14]
24
jdk: [21, 8]
selffuzz/src/test/java/com/code_intelligence/selffuzz/mutation/BUILD.bazel
@@ -11,7 +11,7 @@ java_fuzz_target_test(
11
],
12
data = ["//selffuzz/src/test/resources:ArgumentsMutatorFuzzTest-corpus"],
13
env = {
14
- "_JAVA_OPTIONS": "-Xmx2048m",
+ "_JAVA_OPTIONS": "-Xmx4096m",
15
},
16
fuzzer_args = [
17
# Make sure that the fuzzer can run. Longer fuzzing runs will be done in a separate GH action.
0 commit comments