From 02ce071abb2ba0fdea39b9f00d4ffac4d3ae9670 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Wed, 13 Sep 2023 07:51:58 -0500 Subject: [PATCH] github: export and upload e2e test kind logs (#1157) When things go wrong the logs can help figure out why. Signed-off-by: Dan Williams --- .github/workflows/kind-e2e.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/kind-e2e.yml b/.github/workflows/kind-e2e.yml index 99251e0f5..165070b69 100644 --- a/.github/workflows/kind-e2e.yml +++ b/.github/workflows/kind-e2e.yml @@ -25,6 +25,8 @@ jobs: # - docker-file: images/Dockerfile # cni-version: "1.0.0" # multus-manifest: multus-daemonset.yml + env: + JOB_NAME: "${{ matrix.cni-version }}-${{ matrix.multus-manifest }}" if: > (( github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login ) && @@ -90,6 +92,19 @@ jobs: working-directory: ./e2e run: ./test-default-route1.sh + - name: Export kind logs + if: always() + run: | + mkdir -p /tmp/kind/logs + kind export logs --loglevel=debug /tmp/kind/logs + + - name: Upload kind logs + if: always() + uses: actions/upload-artifact@v3 + with: + name: kind-logs-${{ env.JOB_NAME }}-${{ github.run_id }} + path: /tmp/kind/logs + - name: cleanup cluster and registry run: | kind delete cluster