From 4b62589ec21860ef6c3c6eedad28f3ca5c0fdec2 Mon Sep 17 00:00:00 2001 From: Jesse Thompson Date: Mon, 6 Jan 2025 14:39:36 +0000 Subject: [PATCH] Give more time to nightlies Running our nightlies with race conditions enabled in the integration tests is taking a very long time. This change gives more time to the tests to prevent timing out. --- .github/workflows/nightly-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly-tests.yaml b/.github/workflows/nightly-tests.yaml index 7a8abee4..8eb5c8a6 100644 --- a/.github/workflows/nightly-tests.yaml +++ b/.github/workflows/nightly-tests.yaml @@ -24,4 +24,4 @@ jobs: run: sudo apt install -y libsystemd-dev # for collector journal input - name: Test - run: INTEGRATION=1 ROLLBACK=1 go test -race -mod=vendor -v -timeout=30m ./... + run: INTEGRATION=1 ROLLBACK=1 go test -race -mod=vendor -v -timeout=120m ./...