Skip to content

Commit

Permalink
github: export and upload e2e test kind logs (#1157)
Browse files Browse the repository at this point in the history
When things go wrong the logs can help figure out why.

Signed-off-by: Dan Williams <[email protected]>
  • Loading branch information
dcbw authored Sep 13, 2023
1 parent 7ea924b commit 02ce071
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/kind-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) &&
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 02ce071

Please sign in to comment.