From 5f6546dde35a1a457071487142571ae0363fc475 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 29 Feb 2024 12:41:49 -0800 Subject: [PATCH] Timeout fuzz runs after 5h30m to ensure there's time to upload artifacts --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 96355a66..7615ef7f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -95,6 +95,7 @@ jobs: run: | cargo fuzz build fuzz_read - name: run fuzz + timeout-minutes: 330 run: | cargo fuzz run fuzz_read -- -timeout=10s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs @@ -121,6 +122,7 @@ jobs: run: | cargo fuzz build --no-default-features fuzz_read - name: run fuzz + timeout-minutes: 330 run: | cargo fuzz run fuzz_read -- -timeout=10s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs @@ -147,6 +149,7 @@ jobs: run: | cargo fuzz build fuzz_write - name: run fuzz + timeout-minutes: 330 run: | cargo fuzz run fuzz_write -- -timeout=10s -jobs=100 -workers=2 -runs=50000 -max_len=5000000000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs @@ -173,6 +176,7 @@ jobs: run: | cargo fuzz build --no-default-features fuzz_write - name: run fuzz + timeout-minutes: 330 run: | cargo fuzz run fuzz_write -- -timeout=10s -jobs=100 -workers=2 -runs=10000 -max_len=5000000000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs