From f63dc2f66ce2baeb79f55b46776c1f3095c0fd05 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 14 Mar 2024 14:03:04 -0700 Subject: [PATCH] Bug fix: step timeout needs to be longer than `cargo fuzz run -max_total_time` --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e5a213023..0584f7763 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -123,7 +123,7 @@ jobs: run: | cargo fuzz build --no-default-features fuzz_read - name: run fuzz - timeout-minutes: 330 + timeout-minutes: 331 run: | cargo fuzz run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=250000000 -max_total_time=330m -max_len=16384 -len_control=10000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs