Skip to content

Commit 3785ca3

Browse files
committed
Merge remote-tracking branch 'origin/main' into imex-support
2 parents 2cdc307 + 3e34c94 commit 3785ca3

File tree

7 files changed

+17
-31
lines changed

7 files changed

+17
-31
lines changed

.common-ci.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default:
1919
command: ["--experimental"]
2020

2121
variables:
22-
DRIVER_VERSIONS: 535.216.01 550.127.05
22+
DRIVER_VERSIONS: 535.216.01 550.127.05 565.57.01
2323
BUILD_MULTI_ARCH_IMAGES: "true"
2424

2525
stages:
@@ -73,13 +73,7 @@ trigger-pipeline:
7373
.driver-versions:
7474
parallel:
7575
matrix:
76-
- DRIVER_VERSION: [535.216.01, 550.127.05]
77-
78-
# Define the driver versions for jobs that can be run in parallel for ubuntu22.04
79-
.driver-versions-ubuntu22.04:
80-
parallel:
81-
matrix:
82-
- DRIVER_VERSION: [535.216.01, 550.127.05]
76+
- DRIVER_VERSION: [535.216.01, 550.127.05, 565.57.01]
8377

8478
# Define the matrix of precompiled jobs that can be run in parallel for ubuntu22.04
8579
.driver-versions-precompiled-ubuntu22.04:
@@ -88,12 +82,6 @@ trigger-pipeline:
8882
- DRIVER_BRANCH: [535, 550]
8983
KERNEL_FLAVOR: [aws, azure, generic, nvidia, oracle]
9084

91-
# Define the driver versions for jobs that can be run in parallel for rhel9
92-
.driver-versions-rhel9:
93-
parallel:
94-
matrix:
95-
- DRIVER_VERSION: [535.216.01, 550.127.05]
96-
9785
# Define the distribution targets
9886
.dist-ubuntu20.04:
9987
variables:
@@ -170,15 +158,15 @@ trigger-pipeline:
170158
# Perform for each DRIVER_VERSION
171159
extends:
172160
- .release-generic
173-
- .driver-versions-ubuntu22.04
161+
- .driver-versions
174162
rules:
175163
- if: $CI_PIPELINE_SOURCE != "schedule"
176164

177165
.release-rhel9:
178166
# Perform for each DRIVER_VERSION
179167
extends:
180168
- .release-generic
181-
- .driver-versions-rhel9
169+
- .driver-versions
182170
rules:
183171
- if: $CI_PIPELINE_SOURCE != "schedule"
184172

.github/workflows/image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
driver:
3737
- 535.216.01
3838
- 550.127.05
39-
- 560.35.03
39+
- 565.57.01
4040
dist:
4141
- ubuntu20.04
4242
- ubuntu22.04

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ include:
4444
.image-build-ubuntu22.04:
4545
# Perform for each DRIVER_VERSION
4646
extends:
47-
- .driver-versions-ubuntu22.04
47+
- .driver-versions
4848
- .image-build-generic
4949
rules:
5050
- if: $CI_PIPELINE_SOURCE != "schedule"
@@ -53,7 +53,7 @@ include:
5353
.image-build-rhel9:
5454
# Perform for each DRIVER_VERSION
5555
extends:
56-
- .driver-versions-rhel9
56+
- .driver-versions
5757
- .image-build-generic
5858
rules:
5959
- if: $CI_PIPELINE_SOURCE != "schedule"

.nvidia-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ variables:
8080
.image-pull-ubuntu22.04:
8181
# Perform for each DRIVER_VERSION
8282
extends:
83-
- .driver-versions-ubuntu22.04
83+
- .driver-versions
8484
- .image-pull-generic
8585
rules:
8686
- if: $CI_PIPELINE_SOURCE == "schedule"
@@ -175,7 +175,7 @@ image-rhel8:
175175
.scan-ubuntu22.04:
176176
# Repeat for each DRIVER_VERSION
177177
extends:
178-
- .driver-versions-ubuntu22.04
178+
- .driver-versions
179179
- .scan-generic
180180
rules:
181181
- !reference [.scan-rules-common, rules]
@@ -276,7 +276,7 @@ release:ngc-ubuntu22.04:
276276
extends:
277277
- .release:ngc
278278
- .dist-ubuntu22.04
279-
- .driver-versions-ubuntu22.04
279+
- .driver-versions
280280

281281
release:ngc-precompiled-ubuntu22.04:
282282
variables:
@@ -429,13 +429,13 @@ sign:ngc-ubuntu-rhel-rhcos:
429429
matrix:
430430
- SIGN_JOB_NAME: ["ubuntu"]
431431
VERSION: ["22.04"]
432-
DRIVER_VERSION: ["535.216.01", "550.127.05"]
432+
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
433433
- SIGN_JOB_NAME: ["ubuntu"]
434434
VERSION: ["20.04"]
435-
DRIVER_VERSION: ["535.216.01", "550.127.05"]
435+
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
436436
- SIGN_JOB_NAME: ["rhel"]
437437
VERSION: ["8.8", "8.10"]
438-
DRIVER_VERSION: ["535.216.01", "550.127.05"]
438+
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
439439
- SIGN_JOB_NAME: ["rhcos"]
440440
VERSION: ["4.12","4.13","4.14","4.15", "4.16", "4.17"]
441-
DRIVER_VERSION: ["535.216.01", "550.127.05"]
441+
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]

rhel8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ RUN if [ "$DRIVER_TYPE" != "vgpu" ] && [ "$TARGETARCH" != "arm64" ]; then \
7676
fmPackage=nvidia-fabricmanager-${DRIVER_BRANCH}-${DRIVER_VERSION}-1; \
7777
fi; \
7878
nscqPackage=libnvidia-nscq-${DRIVER_BRANCH}-${DRIVER_VERSION}-1; \
79-
dnf module enable -y nvidia-driver:${DRIVER_BRANCH} && \
79+
dnf module enable -y nvidia-driver:${DRIVER_BRANCH}-dkms && \
8080
dnf install -y ${fmPackage} ${nscqPackage}; fi
8181

8282
COPY nvidia-driver /usr/local/bin

rhel9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RUN if [ "$DRIVER_TYPE" != "vgpu" ]; then \
7070
RUN if [ "$DRIVER_TYPE" != "vgpu" ] && [ "$TARGETARCH" != "arm64" ]; then \
7171
versionArray=(${DRIVER_VERSION//./ }); \
7272
DRIVER_BRANCH=${versionArray[0]}; \
73-
dnf module enable -y nvidia-driver:${DRIVER_BRANCH} && \
73+
dnf module enable -y nvidia-driver:${DRIVER_BRANCH}-dkms && \
7474
dnf install -y nvidia-fabric-manager-${DRIVER_VERSION}-1 libnvidia-nscq-${DRIVER_BRANCH}-${DRIVER_VERSION}-1; fi
7575

7676
COPY nvidia-driver /usr/local/bin

versions.mk

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
# limitations under the License.
1414

1515
# DRIVER_VERSIONS contains latest version in all active datacenter branches
16-
DRIVER_VERSIONS ?= 535.216.01 550.127.05
17-
18-
CUDA_VERSION := 12.6.0
16+
DRIVER_VERSIONS ?= 535.216.01 550.127.05 565.57.01
1917

2018
GOLANG_VERSION := 1.22.8

0 commit comments

Comments
 (0)