-
Notifications
You must be signed in to change notification settings - Fork 26
52 lines (48 loc) · 1.31 KB
/
fuzz.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 10 minutes as a sanity check, should run longer locally.
# For whatever reason, this time is always wayyyy exceeded
# (hence the longer workflow timeout)
FUZZ_TOTAL_TIME: 600
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'