Skip to content

Commit 91e132e

Browse files
committed
E2E: Make timeout configurable and increase it for optional periodics
Signed-off-by: Lennart Jern <[email protected]>
1 parent 272f40b commit 91e132e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/e2e-test-optional-periodic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ jobs:
2222
with:
2323
bmc-protocol: ${{ matrix.bmc-protocol }}
2424
ginkgo-focus: upgrade
25+
timeout-minutes: 120
2526
permissions:
2627
contents: read

.github/workflows/e2e-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,17 @@ on:
1515
ref:
1616
type: string
1717
default: ${{ github.ref }}
18+
timeout-minutes:
19+
type: number
20+
default: 90
1821

1922
permissions: {}
2023

2124
jobs:
2225
test:
2326
name: E2E test
2427
runs-on: ${{ inputs.runner }}
25-
timeout-minutes: 90
28+
timeout-minutes: ${{ inputs.timeout-minutes }}
2629

2730
steps:
2831
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -31,8 +34,8 @@ jobs:
3134

3235
- name: Install libvirt
3336
run: |
34-
sudo apt-get update
35-
sudo apt-get install -y libvirt-daemon-system qemu-kvm virt-manager libvirt-dev
37+
sudo apt-get update
38+
sudo apt-get install -y libvirt-daemon-system qemu-kvm virt-manager libvirt-dev
3639
3740
- name: Run BMO e2e Tests
3841
env:

0 commit comments

Comments
 (0)