Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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/fuzzing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ concurrency:
jobs:
uufuzz-examples:
name: Build and test uufuzz examples
runs-on: ubuntu-latest
runs-on: ubuntu-26.04 # needs newer glibc
steps:
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- name: Update GNU coreutils
run: |
curl https://launchpad.net/~bamf0/+archive/ubuntu/coreutils-reference/+files/gnu-coreutils_9.11-0ubuntu1~ppa3_amd64.deb > 9.11.deb
sudo dpkg -i 9.11.deb
- name: Build uufuzz library
run: |
cd fuzz/uufuzz
Expand All @@ -52,11 +56,15 @@ jobs:

fuzz-build:
name: Build the fuzzers
runs-on: ubuntu-latest
runs-on: ubuntu-26.04 # needs newer glibc
steps:
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- name: Update GNU coreutils
run: |
curl https://launchpad.net/~bamf0/+archive/ubuntu/coreutils-reference/+files/gnu-coreutils_9.11-0ubuntu1~ppa3_amd64.deb > 9.11.deb
sudo dpkg -i 9.11.deb
- name: Install `cargo-fuzz`
uses: taiki-e/install-action@v2
with:
Expand All @@ -72,7 +80,7 @@ jobs:
fuzz-run:
needs: fuzz-build
name: Fuzz
runs-on: ubuntu-latest
runs-on: ubuntu-26.04 # needs newer glibc
timeout-minutes: 5
env:
RUN_FOR: 60
Expand Down Expand Up @@ -103,6 +111,10 @@ jobs:
- uses: actions/checkout@v7.0.0
with:
persist-credentials: false
- name: Update GNU coreutils
run: |
curl https://launchpad.net/~bamf0/+archive/ubuntu/coreutils-reference/+files/gnu-coreutils_9.11-0ubuntu1~ppa3_amd64.deb > 9.11.deb
sudo dpkg -i 9.11.deb
- name: Install `cargo-fuzz`
uses: taiki-e/install-action@v2
with:
Expand Down Expand Up @@ -199,7 +211,7 @@ jobs:
fuzz-summary:
needs: fuzz-run
name: Fuzzing Summary
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
if: always()
steps:
- uses: actions/checkout@v7.0.0
Expand Down
1 change: 1 addition & 0 deletions .vscode/cspell.dictionaries/workspace.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ setpipe

# * other
auxv
dpkg
getlimits
weblate
algs
Expand Down
Loading