Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update timeout for .github/workflows/e2e_nightly.yaml #5534

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/e2e_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ on:

jobs:
ensure-nightly-image-was-built:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
runs-on: ubuntu-latest
steps:
- name: Check if image built this night exists
run: docker pull kong/nightly-ingress-controller:$(date +%Y-%m-%d)

e2e-tests:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
needs: ensure-nightly-image-was-built
uses: ./.github/workflows/_e2e_tests.yaml
secrets: inherit
Expand All @@ -23,6 +25,7 @@ jobs:
run-istio: true

e2e-tests-unreleased-kong:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
needs: ensure-nightly-image-was-built
uses: ./.github/workflows/_e2e_tests.yaml
secrets: inherit
Expand All @@ -41,6 +44,7 @@ jobs:
run-istio: false

integration-tests-unreleased-kong:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
uses: ./.github/workflows/_integration_tests.yaml
secrets: inherit
with:
Expand All @@ -53,6 +57,7 @@ jobs:
log-output-file: /tmp/integration-tests-kic-logs

test-reports:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
needs:
- e2e-tests
- e2e-tests-unreleased-kong
Expand All @@ -63,6 +68,7 @@ jobs:
coverage: false # E2E tests do not generate coverage reports

notify-on-slack:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
runs-on: ubuntu-latest
needs:
- ensure-nightly-image-was-built
Expand Down