From f38fc94115f63d992363e5cfc92f2f486922c675 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 11 Nov 2024 09:52:42 +0000 Subject: [PATCH] build: Increase ARM64 CI build timeouts The builds are flaking due to reaching the timeouts. Signed-off-by: Rob Bradford --- .github/workflows/integration-arm64.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-arm64.yaml b/.github/workflows/integration-arm64.yaml index e5ba47201..d580a991c 100644 --- a/.github/workflows/integration-arm64.yaml +++ b/.github/workflows/integration-arm64.yaml @@ -6,7 +6,7 @@ concurrency: jobs: build: - timeout-minutes: 60 + timeout-minutes: 120 name: Tests (ARM64) runs-on: bookworm-arm64 steps: @@ -21,7 +21,7 @@ jobs: - name: Load openvswitch module run: sudo modprobe openvswitch - name: Run integration tests (musl) - timeout-minutes: 30 + timeout-minutes: 60 run: scripts/dev_cli.sh tests --integration --libc musl - name: Install Azure CLI if: ${{ github.event_name != 'pull_request' }}