From 42660d9e113db4d2fa3b56b27eb9e5209219da64 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 17 Jan 2023 15:28:16 +0100 Subject: .github: add a 15 minute timeout for the `dashboard` action The dashboard testing infrastructure is quite fragile and sometimes just hangs in case of errors. The action then just hangs for 6 hours with no debugging output. Add a 15 minute timeout, this should be enough for this test. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79be83868..59f7dd711 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: path: .cache key: cache - name: run - run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-big-env make presubmit_big + run: gopath/src/github.com/google/syzkaller/.github/workflows/run.sh syz-big-env timeout --signal=SIGINT 15m make presubmit_big - name: codecov uses: codecov/codecov-action@2a829b95deaeea2d11d127cc0358005714ff35ea # v3 with: -- cgit mrf-deployment