Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run fuzzer on runs on #2612

Merged
merged 2 commits into from
Mar 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ on:
jobs:
io_fuzz:
name: 'IO Fuzz'
runs-on: ubuntu-latest
runs-on:
- runs-on=${{ github.run_id }}
- family=c7i.xlarge
- image=ubuntu24-full-x64
- disk=large
- tag=io-fuzz
steps:
- uses: runs-on/action@v1
- uses: actions/checkout@v4
- uses: ./.github/actions/cleanup
- uses: ./.github/actions/setup-rust
Expand All @@ -26,7 +32,7 @@ jobs:
AWS_REGION: 'us-east-1'
AWS_ENDPOINT_URL: 'https://01e9655179bbec953276890b183039bc.r2.cloudflarestorage.com'
- name: Run fuzzing target
run: RUST_BACKTRACE=1 cargo fuzz run file_io -- -max_total_time=300
run: RUST_BACKTRACE=1 cargo fuzz run file_io -- -max_total_time=7200
continue-on-error: true
- name: Archive crash artifacts
uses: actions/upload-artifact@v4
Expand All @@ -46,8 +52,14 @@ jobs:

ops_fuzz:
name: 'Array Operations Fuzz'
runs-on: ubuntu-latest
runs-on:
- runs-on=${{ github.run_id }}
- family=c7i.xlarge
- image=ubuntu24-full-x64
- disk=large
- tag=ops-fuzz
steps:
- uses: runs-on/action@v1
- uses: actions/checkout@v4
- uses: ./.github/actions/cleanup
- uses: ./.github/actions/setup-rust
Expand All @@ -64,7 +76,7 @@ jobs:
AWS_REGION: 'us-east-1'
AWS_ENDPOINT_URL: 'https://01e9655179bbec953276890b183039bc.r2.cloudflarestorage.com'
- name: Run fuzzing target
run: RUST_BACKTRACE=1 cargo fuzz run array_ops -- -max_total_time=3600
run: RUST_BACKTRACE=1 cargo fuzz run array_ops -- -max_total_time=7200
continue-on-error: true
- name: Archive crash artifacts
uses: actions/upload-artifact@v4
Expand Down
Loading