-
Notifications
You must be signed in to change notification settings - Fork 11
27 lines (24 loc) · 872 Bytes
/
Copy pathfuzz.yml
File metadata and controls
27 lines (24 loc) · 872 Bytes
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
name: Scheduled fuzz smoke
on:
schedule:
- cron: '17 4 * * 1'
workflow_dispatch:
permissions:
contents: read
jobs:
receipt-replay-parsers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: dtolnay/rust-toolchain@4be7066ada62dd38de10e7b70166bc74ed198c30 # stable
with:
toolchain: nightly
components: llvm-tools-preview
- name: Install pinned cargo-fuzz
run: cargo install cargo-fuzz --version 0.12.0 --locked
- name: Fuzz canonical receipt parser
run: cargo fuzz run canonical_json -- -max_total_time=120
- name: Fuzz tokenized replay parser
run: cargo fuzz run command_argv -- -max_total_time=120
- name: Fuzz historical command parser
run: cargo fuzz run legacy_command -- -max_total_time=120