Skip to content

Commit 8407af7

Browse files
Setting upload archive to run always
Signed-off-by: Vishesh Tanksale <vtanksale@nvidia.com>
1 parent 302fb5f commit 8407af7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
./hack/e2e_tests.sh
7575
7676
- name: Archive test logs
77-
# if: ${{ failure() }}
77+
if: ${{ always() }}
7878
uses: actions/upload-artifact@v4
7979
with:
8080
name: e2e-test-logs

test/e2e/nim-operator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ var _ = Describe("NIM Operator", func() {
139139
Eventually(func() bool {
140140
nimCacheObject, _ := cli.AppsV1alpha1().NIMCaches(testNamespace.Name).Get(ctx, nimCache.Name, metav1.GetOptions{})
141141
fmt.Println("NIMCache object state:", nimCacheObject.Status.Conditions)
142-
pods, err := clientSet.CoreV1().Pods(testNamespace.Name).List(ctx, metav1.ListOptions{})
142+
/* pods, err := clientSet.CoreV1().Pods(testNamespace.Name).List(ctx, metav1.ListOptions{})
143143
Expect(err).NotTo(HaveOccurred())
144144
for _, pod := range pods.Items {
145145
fmt.Println("Pod name:", pod.Name)
146146
}
147-
fmt.Println("***************")
147+
fmt.Println("***************") */
148148
return nimCacheObject.Status.State == v1alpha1.NimCacheStatusReady
149149
}, Timeout, 5*time.Second).Should(BeTrue())
150150

0 commit comments

Comments
 (0)