Skip to content

Commit

Permalink
Update the timeout of the clean up cluster step to 1h
Browse files Browse the repository at this point in the history
Signed-off-by: ytimocin <ytimocin@microsoft.com>
  • Loading branch information
ytimocin committed Sep 18, 2024
1 parent a17f9cf commit 7d22b2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

set -e

echo "cleaning up cluster"
echo "cleaning up long-running cluster on Azure"

# Delete all test resources in queuemessages.
if kubectl get crd queuemessages.ucp.dev >/dev/null 2>&1; then
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/long-running-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,9 @@ jobs:
env:
RESOURCE_GROUP: ${{ env.AZURE_TEST_RESOURCE_GROUP }}
- name: Clean up cluster
run: ./.github/scripts/cleanup-cluster.sh
if: always()
timeout-minutes: 60
run: ./.github/scripts/cleanup-long-running-cluster.sh
- name: Download Bicep
run: |
chmod +x ./bin/rad
Expand Down Expand Up @@ -512,7 +514,7 @@ jobs:
- name: Clean up cluster
if: always()
timeout-minutes: 60
run: ./.github/scripts/cleanup-cluster.sh
run: ./.github/scripts/cleanup-long-running-cluster.sh
report-failure:
name: Report test failure
needs: [build, tests]
Expand Down

0 comments on commit 7d22b2d

Please sign in to comment.