Skip to content

Commit 4b389ee

Browse files
chore[fuzz]: run fuzz in rel with debug remove multiple jobs (#5149)
Signed-off-by: Joe Isaacs <[email protected]>
1 parent d47e47b commit 4b389ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/fuzz.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88
jobs:
99
io_fuzz:
1010
name: "IO Fuzz"
11-
timeout-minutes: 180
11+
timeout-minutes: 230 # almost 4 hours
1212
runs-on:
1313
- runs-on=${{ github.run_id }}
14-
- family=m8g.2xlarge
14+
- family=m8g.large
1515
- image=ubuntu24-full-arm64
1616
- disk=large
1717
- extras=s3-cache
@@ -44,7 +44,7 @@ jobs:
4444
AWS_ENDPOINT_URL: "https://01e9655179bbec953276890b183039bc.r2.cloudflarestorage.com"
4545
- name: Run fuzzing target
4646
id: fuzz
47-
run: RUST_BACKTRACE=1 cargo +nightly fuzz run file_io -j "$(nproc)" -- -max_total_time=7200
47+
run: RUST_BACKTRACE=1 cargo +nightly fuzz run --release --debug-assertions file_io -- -max_total_time=7200
4848
continue-on-error: true
4949
- name: Archive crash artifacts
5050
uses: actions/upload-artifact@v4
@@ -67,10 +67,10 @@ jobs:
6767

6868
ops_fuzz:
6969
name: "Array Operations Fuzz"
70-
timeout-minutes: 180
70+
timeout-minutes: 230 # almost 4 hours
7171
runs-on:
7272
- runs-on=${{ github.run_id }}
73-
- family=m8g.2xlarge
73+
- family=m8g.large
7474
- image=ubuntu24-full-arm64
7575
- disk=large
7676
- extras=s3-cache
@@ -103,7 +103,7 @@ jobs:
103103
AWS_ENDPOINT_URL: "https://01e9655179bbec953276890b183039bc.r2.cloudflarestorage.com"
104104
- name: Run fuzzing target
105105
id: fuzz
106-
run: RUST_BACKTRACE=1 cargo +nightly fuzz run array_ops -j "$(nproc)" -- -max_total_time=7200
106+
run: RUST_BACKTRACE=1 cargo +nightly fuzz run --release --debug-assertions array_ops -- -max_total_time=7200
107107
continue-on-error: true
108108
- name: Archive crash artifacts
109109
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)