Make CI fuzzing a container task #67
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fuzz Parser | |
on: | |
push: | |
paths: | |
- src/scanner.c | |
- .github/workflows/fuzz.yaml | |
- fuzzer/ | |
pull_request: | |
paths: | |
- src/scanner.c | |
- .github/workflows/fuzz.yaml | |
- fuzzer/ | |
workflow_dispatch: | |
env: | |
RUST_BACKTRACE: 1 | |
CI: 1 | |
jobs: | |
test: | |
name: Parser fuzzing | |
runs-on: ubuntu-latest | |
timeout-minutes: 25 | |
# Run in a container because we had some issues reproducing failures | |
container: | |
image: node:lts-slim | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
apt update | |
apt install -y clang curl make | |
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | | |
bash -s -- --to /usr/bin | |
- run: just setup | |
- run: just fuzz | |
- name: Print failures | |
if: always() | |
run: ls fuzzer/failures/* | | |
xargs -IFNAME sh -c 'echo "\nContents of FNAME:" && base64 -i FNAME' |