From 8a9051f6236b44ed53303c582df74f8bcbb18747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCller?= <649785+chmllr@users.noreply.github.com> Date: Fri, 25 Oct 2024 12:02:43 +0200 Subject: [PATCH] fix(ci): increase the nightly-join test timeout (#2281) By default, a Go test times out after 10m. But the syncing is expected to take much longer, so we disable the time out because the test has a built in timeout of 6h. issue: none --- .github/workflows/ci-join.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-join.yml b/.github/workflows/ci-join.yml index 4766ba5f2..386cc5925 100644 --- a/.github/workflows/ci-join.yml +++ b/.github/workflows/ci-join.yml @@ -4,7 +4,7 @@ name: join omega nightly on: workflow_dispatch: schedule: - - cron: "0 4 * * 1-5" # Weekdays at 4am UTC + - cron: "0 1 * * 1-5" # Weekdays at 1am UTC permissions: contents: read @@ -31,7 +31,7 @@ jobs: - name: Run join test run: | cd scripts/join - go test . -v --integration --logs_file=docker_logs.txt + go test . -v --integration --logs_file=docker_logs.txt -timeout 0 - name: Upload docker logs uses: actions/upload-artifact@v4