ci: add fuzz_large_year target to CI workflow

This commit is contained in:
Sylvestre Ledru
2026-03-31 10:23:20 +02:00
parent 93f2eafcf7
commit 3767622cc3
+7 -1
View File
@@ -154,9 +154,15 @@ jobs:
- name: Install `cargo-fuzz`
run: cargo install cargo-fuzz --locked
- uses: Swatinem/rust-cache@v2
- name: Run from_str for XX seconds
- name: Run fuzz_parse_datetime for XX seconds
shell: bash
run: |
## Run it
cd fuzz
cargo fuzz run fuzz_parse_datetime -- -max_total_time=${{ env.RUN_FOR }} -detect_leaks=0
- name: Run fuzz_large_year for XX seconds
shell: bash
run: |
## Run it
cd fuzz
cargo fuzz run fuzz_large_year -- -max_total_time=${{ env.RUN_FOR }} -detect_leaks=0