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
|
- uses: actions/checkout@v2
|
||||||
- name: Setup Cluster
|
- name: Setup Cluster
|
||||||
run: |
|
run: |
|
||||||
kind delete cluster 2>/dev/null
|
set -x
|
||||||
|
kind delete cluster || true
|
||||||
kind create cluster
|
kind create cluster
|
||||||
kubectl get nodes
|
kubectl get nodes
|
||||||
- name: Deploy From Source
|
- name: Deploy From Source
|
||||||
|
@ -40,6 +41,7 @@ jobs:
|
||||||
- name: Smoke Test
|
- name: Smoke Test
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
run: |
|
run: |
|
||||||
|
set -x
|
||||||
RESULT=" "
|
RESULT=" "
|
||||||
while [[ "$RESULT" != " HTTP/1.1 200 OK" ]]; do
|
while [[ "$RESULT" != " HTTP/1.1 200 OK" ]]; do
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue