Skip to content

Commit 047d5f4

Browse files
[no-relnote] Update GitHub Action job for E2E
Signed-off-by: Carlos Eduardo Arango Gutierrez <[email protected]>
1 parent 1f02474 commit 047d5f4

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/e2e.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ jobs:
5858
- name: Run e2e tests
5959
env:
6060
KUBECONFIG: ${{ github.workspace }}/kubeconfig
61+
HELM_CHART: ${{ github.workspace }}/deployments/helm/nvidia-device-plugin
6162
E2E_IMAGE_REPO: ghcr.io/nvidia/k8s-device-plugin
6263
E2E_IMAGE_TAG: ${{ inputs.version }}-ubi9
64+
E2E_IMAGE_PULL_POLICY: Always
6365
LOG_ARTIFACTS: ${{ github.workspace }}/e2e_logs
6466
run: |
65-
make test-e2e
67+
make -f tests/e2e/Makefile test-e2e
6668
6769
- name: Archive test logs
6870
if: ${{ failure() }}
@@ -71,6 +73,13 @@ jobs:
7173
name: e2e-test-logs
7274
path: ./e2e_logs/
7375
retention-days: 15
76+
77+
- name: Archive Ginkgo logs
78+
uses: actions/upload-artifact@v4
79+
with:
80+
name: ginkgo-logs
81+
path: ginkgo.json
82+
retention-days: 15
7483

7584
- name: Post text to a Slack channel
7685
if: ${{ failure() }}

0 commit comments

Comments
 (0)