Skip to content

Commit

Permalink
Remove terraform destroy step in addon test
Browse files Browse the repository at this point in the history
  • Loading branch information
lisguo committed Jul 30, 2024
1 parent 1882049 commit 2b0f16d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/eks-add-on-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ jobs:
terraform destroy -var="beta=${{ github.event.inputs.run_in_beta }}" -auto-approve && exit 1
fi
- name: Terraform destroy
if: ${{ cancelled() || failure() }}
uses: nick-fields/retry@v2
with:
max_attempts: 3
timeout_minutes: 8
retry_wait_seconds: 5
command: |
cd integration-tests/terraform/eks
terraform destroy -var="beta=${{ github.event.inputs.run_in_beta }}" --auto-approve
# - name: Terraform destroy
# if: ${{ cancelled() || failure() }}
# uses: nick-fields/retry@v2
# with:
# max_attempts: 3
# timeout_minutes: 8
# retry_wait_seconds: 5
# command: |
# cd integration-tests/terraform/eks
#
# terraform destroy -var="beta=${{ github.event.inputs.run_in_beta }}" --auto-approve

0 comments on commit 2b0f16d

Please sign in to comment.