Skip to content

Commit 7c597c9

Browse files
committed
ubuntu24.04 ci pipeline fix
Signed-off-by: shiva kumar <[email protected]>
1 parent af89f33 commit 7c597c9

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
types:
2121
- completed
2222
branches:
23-
- main
23+
- main-no
2424

2525
jobs:
2626
e2e-tests-nvidiadriver:

.github/workflows/image.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ on:
2121
- opened
2222
- synchronize
2323
branches:
24-
- main
25-
- release-*
24+
- main-no
25+
# - release-*
2626
push:
2727
branches:
28-
- main
29-
- release-*
28+
- main-no
29+
# - release-*
3030

3131
jobs:
3232
image:

tests/scripts/ci-precompiled-helpers.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ get_kernel_versions_to_test() {
1919
done
2020
if [[ "$should_continue" == true ]]; then
2121
KERNEL_VERSION=$(echo "$KERNEL_VERSION" | tr -d ' \n')
22+
echo "SHIVA1 $KERNEL_VERSION"
2223
kernel_versions+=("$KERNEL_VERSION")
2324
fi
2425
done
25-
echo "${kernel_versions[@]}"
26+
echo "SHIVA ${kernel_versions[@]}"
2627
}

tests/scripts/findkernelversion.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ else
3434
tar -xf $artifact.tar
3535
rm -f $artifact.tar
3636
export $(grep -oP 'KERNEL_VERSION=[^ ]+' ./kernel_version.txt)
37+
echo "KUMAR1 $KERNEL_VERSION"
3738
rm -f kernel_version.txt
3839
break
3940
fi
@@ -44,7 +45,9 @@ fi
4445
status=0
4546
regctl tag ls nvcr.io/nvidia/driver | grep "^${DRIVER_BRANCH}-${KERNEL_VERSION}-${DIST}$" || status=$?
4647
if [[ $status -eq 0 ]]; then
48+
echo "KUMAR2 $KERNEL_VERSION"
4749
export should_continue=false
4850
else
51+
echo "KUMAR3 $KERNEL_VERSION"
4952
export should_continue=true
5053
fi

0 commit comments

Comments
 (0)