Make CI fuzzing a container task #73
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 | |
env: | |
# Just 15 minutes, should be run longer locally | |
FUZZ_TOTAL_TIME: 900 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
if [ -f /.dockerenv ]; then | |
echo "Running in docker" | |
else | |
echo "Not in a docker container!" | |
exit 1 | |
fi | |
apt-get update | |
apt-get install -y clang curl make g++ git | |
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' |