From 56ba43eab701e2af1cf5d603f963af8ff80e42d1 Mon Sep 17 00:00:00 2001 From: Ales Musil Date: Fri, 26 May 2023 13:33:06 +0200 Subject: [PATCH] ci: ovn-kubernetes: Align the timeouts with u/s ovnk We saw a lot of failures recently due to jobs timing out. Align the timeouts with upstream ovn-kubernetes [0]. [0] https://github.com/ovn-org/ovn-kubernetes/commit/4ff09a1b59bc Signed-off-by: Ales Musil Signed-off-by: Dumitru Ceara (cherry picked from commit 68dd491a1cade2dfef7a2c5baf4d8f6b6b65223a) --- .github/workflows/ovn-kubernetes.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ovn-kubernetes.yml b/.github/workflows/ovn-kubernetes.yml index 8f05795272..b8cacf873e 100644 --- a/.github/workflows/ovn-kubernetes.yml +++ b/.github/workflows/ovn-kubernetes.yml @@ -56,7 +56,7 @@ jobs: name: e2e if: github.event_name != 'schedule' runs-on: ubuntu-latest - timeout-minutes: 120 + timeout-minutes: 220 strategy: fail-fast: false matrix: @@ -137,6 +137,9 @@ jobs: working-directory: src/github.com/ovn-org/ovn-kubernetes - name: Run Tests + # e2e tests take ~60 minutes normally, 120 should be more than enough + # set 180 for control-plane tests as these might take a while + timeout-minutes: ${{ matrix.target == 'control-plane' && 180 || 120 }} run: | make -C test ${{ matrix.target }} working-directory: src/github.com/ovn-org/ovn-kubernetes