Skip to content

Commit

Permalink
ci: ovn-kubernetes: Align the timeouts with u/s ovnk
Browse files Browse the repository at this point in the history
We saw a lot of failures recently due to jobs timing out.
Align the timeouts with upstream ovn-kubernetes [0].

[0] ovn-org/ovn-kubernetes@4ff09a1b59bc

Signed-off-by: Ales Musil <amusil@redhat.com>
Signed-off-by: Dumitru Ceara <dceara@redhat.com>
(cherry picked from commit 68dd491)
  • Loading branch information
almusil authored and dceara committed May 30, 2023
1 parent ede0940 commit d312982
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ovn-kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: e2e
if: github.event_name != 'schedule'
runs-on: ubuntu-20.04
timeout-minutes: 120
timeout-minutes: 220
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -128,6 +128,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
Expand Down

0 comments on commit d312982

Please sign in to comment.