Skip to content

Commit 2a45e18

Browse files
committed
ubuntu24.04 ci pipeline fix
Signed-off-by: shiva kumar <[email protected]>
1 parent 3f194bd commit 2a45e18

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/image.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ on:
2121
- opened
2222
- synchronize
2323
branches:
24-
- main-no
24+
- main
2525
push:
2626
branches:
27-
- main-no
27+
- main
2828

2929
jobs:
3030
image:
@@ -89,6 +89,7 @@ jobs:
8989
IMAGE_NAME: ghcr.io/${LOWERCASE_REPO_OWNER}/driver
9090
VERSION: ${COMMIT_SHORT_SHA}
9191
run: |
92+
echo "DRIVER_VERSIONS=${{ matrix.driver }} make build-${{ matrix.dist }}-${{ matrix.driver }}"
9293
DRIVER_VERSIONS=${{ matrix.driver }} make build-${{ matrix.dist }}-${{ matrix.driver }}
9394
9495
pre-compiled:
@@ -154,6 +155,7 @@ jobs:
154155
VERSION: ${COMMIT_SHORT_SHA}
155156
BASE_TARGET: jammy
156157
run: |
158+
echo "make DRIVER_BRANCH=${{ matrix.driver }} KERNEL_FLAVOR=${{ matrix.flavor }} build-base-${BASE_TARGET}"
157159
make DRIVER_BRANCH=${{ matrix.driver }} KERNEL_FLAVOR=${{ matrix.flavor }} build-base-${BASE_TARGET}
158160
159161
trap "docker rm -f base-${BASE_TARGET}-${{ matrix.flavor }}" EXIT
@@ -170,5 +172,6 @@ jobs:
170172
PRECOMPILED: "true"
171173
DIST: signed_ubuntu22.04
172174
run: |
173-
source kernel_version.txt && \
175+
source kernel_version.txt
176+
echo "make DRIVER_VERSIONS=${DRIVER_VERSIONS} DRIVER_BRANCH=${{ matrix.driver }} build-${DIST}-${DRIVER_VERSION}"
174177
make DRIVER_VERSIONS=${DRIVER_VERSIONS} DRIVER_BRANCH=${{ matrix.driver }} build-${DIST}-${DRIVER_VERSION}

.github/workflows/precompiled.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ jobs:
105105
VERSION: ${COMMIT_SHORT_SHA}
106106
BASE_TARGET: jammy
107107
run: |
108+
echo "make DRIVER_BRANCH=${{ matrix.driver_branch }} KERNEL_FLAVOR=${{ matrix.flavor }} build-base-${BASE_TARGET}"
108109
make DRIVER_BRANCH=${{ matrix.driver_branch }} KERNEL_FLAVOR=${{ matrix.flavor }} build-base-${BASE_TARGET}
109110
110111
trap "docker rm -f base-${BASE_TARGET}-${{ matrix.flavor }}" EXIT
@@ -121,7 +122,8 @@ jobs:
121122
PRECOMPILED: "true"
122123
DIST: signed_${{ matrix.dist }}
123124
run: |
124-
source kernel_version.txt && \
125+
source kernel_version.txt
126+
echo " make DRIVER_VERSIONS=${DRIVER_VERSIONS} DRIVER_BRANCH=${{ matrix.driver_branch }} build-${DIST}-${DRIVER_VERSION}"
125127
make DRIVER_VERSIONS=${DRIVER_VERSIONS} DRIVER_BRANCH=${{ matrix.driver_branch }} build-${DIST}-${DRIVER_VERSION}
126128
127129
- name: Save build image as a tar

0 commit comments

Comments
 (0)