diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 960e59a4f7680..a87fef48169ec 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -15,6 +15,18 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v1 + # for debugging + - name: Dump env + run: | + env | sort + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Dump job context + env: + JOB_CONTEXT: ${{ toJson(job) }} + run: echo "$JOB_CONTEXT" - name: Validate go deps run: | . bin/_tag.sh @@ -195,6 +207,7 @@ jobs: kind_cleanup: if: always() strategy: + fail-fast: false # always attempt to cleanup all clusters matrix: integration_test: [deep, upgrade, helm] needs: [kind_integration] @@ -203,6 +216,18 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v1 + # for debugging + - name: Dump env + run: | + env | sort + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Dump job context + env: + JOB_CONTEXT: ${{ toJson(job) }} + run: echo "$JOB_CONTEXT" - name: Docker SSH setup env: DOCKER_ADDRESS: ${{ secrets.DOCKER_ADDRESS }}