Skip to content

Commit

Permalink
Merge pull request #324 from hmlanigan/github-action-timeouts
Browse files Browse the repository at this point in the history
GitHub action timeouts
  • Loading branch information
hmlanigan authored Oct 18, 2023
2 parents 098a83a + 00ed686 commit 52d9cd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
needs:
- build
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -70,5 +70,5 @@ jobs:
- env:
TF_ACC: "1"
TEST_CLOUD: ${{ matrix.cloud }}
run: go test -v -cover ./internal/provider/
run: go test -timeout 40m -v -cover ./internal/provider/

3 changes: 2 additions & 1 deletion .github/workflows/test_new_candidates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ jobs:
juju-channel: ${{ env.channel }}
- name: "Set environment to configure provider"
if: ${{ env.next-test != 'NA' }}
# language=bash
run: |
CONTROLLER=$(juju whoami --format yaml | yq .controller)
Expand All @@ -105,7 +106,7 @@ jobs:
env:
TF_ACC: "1"
TEST_CLOUD: ${{ matrix.cloud }}
run: go test -timeout 30m -v -cover ./internal/provider/
run: go test -timeout 40m -v -cover ./internal/provider/
timeout-minutes: 40
- uses: actions/upload-artifact@v3
if: ${{ success() }}
Expand Down

0 comments on commit 52d9cd1

Please sign in to comment.