set -x in all tests
This commit is contained in:
parent
08280f66ac
commit
dec6299747
1 changed files with 3 additions and 1 deletions
4
.github/workflows/smoke-tests.yml
vendored
4
.github/workflows/smoke-tests.yml
vendored
|
@ -16,7 +16,8 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- name: Setup Cluster
|
||||
run: |
|
||||
kind delete cluster 2>/dev/null
|
||||
set -x
|
||||
kind delete cluster || true
|
||||
kind create cluster
|
||||
kubectl get nodes
|
||||
- name: Deploy From Source
|
||||
|
@ -40,6 +41,7 @@ jobs:
|
|||
- name: Smoke Test
|
||||
timeout-minutes: 5
|
||||
run: |
|
||||
set -x
|
||||
RESULT=" "
|
||||
while [[ "$RESULT" != " HTTP/1.1 200 OK" ]]; do
|
||||
sleep 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue