Skip to content

Commit

Permalink
chore(ci): increase integration test timeout to 20min (#587)
Browse files Browse the repository at this point in the history
Experienced the first timeout during integration tests during last
night's scheduled CI run. This simplifies the timeout settings (one for
the entire region-scoped job) and increases the limit to 20min.
  • Loading branch information
jharley authored Dec 6, 2024
1 parent 89f2a89 commit a5ad420
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: Test US
needs: build
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 20
concurrency:
group: hnytf-testacc-us
env:
Expand All @@ -58,7 +58,6 @@ jobs:
./scripts/setup-testsuite-dataset
- name: Run client acceptance tests
timeout-minutes: 10
env:
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY }}
HONEYCOMB_KEY_ID: ${{ secrets.HONEYCOMB_KEY_ID }}
Expand All @@ -79,7 +78,6 @@ jobs:
terraform_wrapper: false

- name: Run TF acceptance tests
timeout-minutes: 10
env:
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY }}
HONEYCOMB_KEY_ID: ${{ secrets.HONEYCOMB_KEY_ID }}
Expand Down Expand Up @@ -110,7 +108,6 @@ jobs:
- name: Cleanup Dangling Resources
if: ${{ always() }}
timeout-minutes: 5
env:
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY }}
HONEYCOMB_KEY_ID: ${{ secrets.HONEYCOMB_KEY_ID }}
Expand All @@ -134,7 +131,7 @@ jobs:
name: Test EU
needs: build
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 20
concurrency:
group: hnytf-testacc-eu
env:
Expand All @@ -159,7 +156,6 @@ jobs:
./scripts/setup-testsuite-dataset
- name: Run client acceptance tests
timeout-minutes: 10
env:
HONEYCOMB_API_ENDPOINT: https://api.eu1.honeycomb.io
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY_EU }}
Expand All @@ -181,7 +177,6 @@ jobs:
terraform_wrapper: false

- name: Run TF acceptance tests
timeout-minutes: 10
env:
HONEYCOMB_API_ENDPOINT: https://api.eu1.honeycomb.io
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY_EU }}
Expand Down Expand Up @@ -213,7 +208,6 @@ jobs:
- name: Cleanup Dangling Resources
if: ${{ always() }}
timeout-minutes: 5
env:
HONEYCOMB_API_ENDPOINT: https://api.eu1.honeycomb.io
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY_EU }}
Expand Down

0 comments on commit a5ad420

Please sign in to comment.