We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b0e2ee commit f5c3347Copy full SHA for f5c3347
.github/workflows/e2e.yaml
@@ -70,8 +70,8 @@ jobs:
70
71
- name: Run e2e tests
72
env:
73
- IMAGE_NAME: ghcr.io/nvidia/container-toolkit
74
- VERSION: ${{ inputs.version }}
+ E2E_IMAGE_REPO: ghcr.io/nvidia/container-toolkit
+ E2E_IMAGE_TAG: ${{ inputs.version }}-ubuntu20.04
75
SSH_KEY: ${{ secrets.AWS_SSH_KEY }}
76
E2E_SSH_USER: ${{ secrets.E2E_SSH_USER }}
77
E2E_SSH_HOST: ${{ steps.holodeck_public_dns_name.outputs.result }}
@@ -82,8 +82,15 @@ jobs:
82
chmod 600 "$e2e_ssh_key"
83
export E2E_SSH_KEY="$e2e_ssh_key"
84
85
- make -f tests/e2e/Makefile test
+ make -f tests/e2e/Makefile test-e2e
86
87
+ - name: Archive Ginkgo logs
88
+ uses: actions/upload-artifact@v4
89
+ with:
90
+ name: ginkgo-logs
91
+ path: ginkgo.json
92
+ retention-days: 15
93
+
94
- name: Send Slack alert notification
95
if: ${{ failure() }}
96
uses: slackapi/[email protected]
0 commit comments