Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .common-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default:
command: ["--experimental"]

variables:
DRIVER_VERSIONS: 535.216.01 550.127.05
DRIVER_VERSIONS: 535.216.01 550.127.05 565.57.01
BUILD_MULTI_ARCH_IMAGES: "true"

stages:
Expand Down Expand Up @@ -73,7 +73,7 @@ trigger-pipeline:
.driver-versions:
parallel:
matrix:
- DRIVER_VERSION: [535.216.01, 550.127.05]
- DRIVER_VERSION: [535.216.01, 550.127.05, 565.57.01]

# Define the matrix of precompiled jobs that can be run in parallel for ubuntu22.04
.driver-versions-precompiled-ubuntu22.04:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
driver:
- 535.216.01
- 550.127.05
- 565.57.01
dist:
- ubuntu20.04
- ubuntu22.04
Expand Down
8 changes: 4 additions & 4 deletions .nvidia-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -429,13 +429,13 @@ sign:ngc-ubuntu-rhel-rhcos:
matrix:
- SIGN_JOB_NAME: ["ubuntu"]
VERSION: ["22.04"]
DRIVER_VERSION: ["535.216.01", "550.127.05"]
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
- SIGN_JOB_NAME: ["ubuntu"]
VERSION: ["20.04"]
DRIVER_VERSION: ["535.216.01", "550.127.05"]
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
- SIGN_JOB_NAME: ["rhel"]
VERSION: ["8.8", "8.10"]
DRIVER_VERSION: ["535.216.01", "550.127.05"]
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
- SIGN_JOB_NAME: ["rhcos"]
VERSION: ["4.12","4.13","4.14","4.15", "4.16", "4.17"]
DRIVER_VERSION: ["535.216.01", "550.127.05"]
DRIVER_VERSION: ["535.216.01", "550.127.05", "565.57.01"]
2 changes: 1 addition & 1 deletion rhel8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN if [ "$DRIVER_TYPE" != "vgpu" ] && [ "$TARGETARCH" != "arm64" ]; then \
fmPackage=nvidia-fabricmanager-${DRIVER_BRANCH}-${DRIVER_VERSION}-1; \
fi; \
nscqPackage=libnvidia-nscq-${DRIVER_BRANCH}-${DRIVER_VERSION}-1; \
dnf module enable -y nvidia-driver:${DRIVER_BRANCH} && \
dnf module enable -y nvidia-driver:${DRIVER_BRANCH}-dkms && \
dnf install -y ${fmPackage} ${nscqPackage}; fi

COPY nvidia-driver /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion rhel9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ RUN if [ "$DRIVER_TYPE" != "vgpu" ]; then \
RUN if [ "$DRIVER_TYPE" != "vgpu" ] && [ "$TARGETARCH" != "arm64" ]; then \
versionArray=(${DRIVER_VERSION//./ }); \
DRIVER_BRANCH=${versionArray[0]}; \
dnf module enable -y nvidia-driver:${DRIVER_BRANCH} && \
dnf module enable -y nvidia-driver:${DRIVER_BRANCH}-dkms && \
dnf install -y nvidia-fabric-manager-${DRIVER_VERSION}-1 libnvidia-nscq-${DRIVER_BRANCH}-${DRIVER_VERSION}-1; fi

COPY nvidia-driver /usr/local/bin
Expand Down
4 changes: 1 addition & 3 deletions versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
# limitations under the License.

# DRIVER_VERSIONS contains latest version in all active datacenter branches
DRIVER_VERSIONS ?= 535.216.01 550.127.05

CUDA_VERSION := 12.6.0
DRIVER_VERSIONS ?= 535.216.01 550.127.05 565.57.01

GOLANG_VERSION := 1.22.8