From dec62997479c035ebdf28d89cf244572ec8c17fb Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Wed, 19 Feb 2020 18:57:52 -0800 Subject: [PATCH] set -x in all tests --- .github/workflows/smoke-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index 3efa7a7..2661a8f 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -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