Skip to content
Open
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
6 changes: 3 additions & 3 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.274.02 570.195.03 580.105.08
DRIVER_VERSIONS: 535.274.02 570.195.03 580.105.08 590.48.01
BUILD_MULTI_ARCH_IMAGES: "true"

stages:
Expand Down Expand Up @@ -81,13 +81,13 @@ trigger-pipeline:
.driver-versions:
parallel:
matrix:
- DRIVER_VERSION: [535.274.02, 570.195.03, 580.105.08]
- DRIVER_VERSION: [535.274.02, 570.195.03, 580.105.08, 590.48.01]

# Define the driver versions for jobs that can be run in parallel
.driver-versions-ubuntu24.04:
parallel:
matrix:
- DRIVER_VERSION: [570.195.03, 580.105.08]
- DRIVER_VERSION: [570.195.03, 580.105.08, 590.48.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 @@ -31,6 +31,7 @@ jobs:
- 535.274.02
- 570.195.03
- 580.105.08
- 590.48.01
dist:
- ubuntu22.04
- ubuntu24.04
Expand Down
2 changes: 1 addition & 1 deletion .nvidia-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variables:
# Define the public staging registry
STAGING_REGISTRY: ghcr.io/nvidia
STAGING_VERSION: "${CI_COMMIT_SHORT_SHA}"
PUBLISH_VERSIONS: 535.274.02 570.195.03 580.105.08
PUBLISH_VERSIONS: 590.48.01

.image-pull-rules:
# We delay the job start to allow the public pipeline to generate the required images.
Expand Down
17 changes: 13 additions & 4 deletions rhel8/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,19 @@ nvidia_installer () {
}

fabricmanager_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y nvidia-fabricmanager-${DRIVER_VERSION}-1.el8
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y nvidia-fabricmanager-${DRIVER_VERSION}-1
else
dnf install -y nvidia-fabric-manager-${DRIVER_VERSION}-1
fi
}

nscq_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y libnvidia-nscq-${DRIVER_VERSION}-1.el8
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y libnvidia-nscq-${DRIVER_VERSION}-1
else
dnf install -y libnvidia-nscq-${DRIVER_BRANCH}-${DRIVER_VERSION}-1
Expand All @@ -106,7 +110,10 @@ nscq_install() {

nvsdm_install() {
if [ "$TARGETARCH" = "amd64" ]; then
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y libnvsdm-${DRIVER_VERSION}-1.el8
return 0
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y libnvsdm-${DRIVER_VERSION}-1
return 0
fi
Expand All @@ -124,7 +131,9 @@ nvlink5_pkgs_install() {
}

imex_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y nvidia-imex-${DRIVER_VERSION}-1.el8
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y nvidia-imex-${DRIVER_VERSION}-1
elif [ "$DRIVER_BRANCH" -ge "550" ]; then
dnf install -y nvidia-imex-${DRIVER_BRANCH}-${DRIVER_VERSION}-1
Expand Down
17 changes: 13 additions & 4 deletions rhel9/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,19 @@ nvidia_installer () {
}

fabricmanager_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y nvidia-fabricmanager-${DRIVER_VERSION}-1.el9
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y nvidia-fabricmanager-${DRIVER_VERSION}-1
else
dnf install -y nvidia-fabric-manager-${DRIVER_VERSION}-1
fi
}

nscq_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y libnvidia-nscq-${DRIVER_VERSION}-1.el9
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y libnvidia-nscq-${DRIVER_VERSION}-1
else
dnf install -y libnvidia-nscq-${DRIVER_BRANCH}-${DRIVER_VERSION}-1
Expand All @@ -117,7 +121,10 @@ nscq_install() {
# libnvsdm packages are not available for arm64
nvsdm_install() {
if [ "$TARGETARCH" = "amd64" ]; then
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y libnvsdm-${DRIVER_VERSION}-1.el9
return 0
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y libnvsdm-${DRIVER_VERSION}-1
return 0
fi
Expand All @@ -135,7 +142,9 @@ nvlink5_pkgs_install() {
}

imex_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
dnf install -y nvidia-imex-${DRIVER_VERSION}-1.el9
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
dnf install -y nvidia-imex-${DRIVER_VERSION}-1
elif [ "$DRIVER_BRANCH" -ge "550" ]; then
dnf install -y nvidia-imex-${DRIVER_BRANCH}-${DRIVER_VERSION}-1
Expand Down
16 changes: 12 additions & 4 deletions ubuntu22.04/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,19 @@ repo_setup () {
}

fabricmanager_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-1
else
apt-get install -y --no-install-recommends nvidia-fabricmanager-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
fi
}

nscq_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-1
else
apt-get install -y --no-install-recommends libnvidia-nscq-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
Expand All @@ -71,7 +75,9 @@ nscq_install() {
# libnvsdm packages are not available for arm64
nvsdm_install() {
if [ "$TARGETARCH" = "amd64" ]; then
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-1
elif [ "$DRIVER_BRANCH" -ge "570" ]; then
apt-get install -y --no-install-recommends libnvsdm-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
Expand All @@ -86,7 +92,9 @@ nvlink5_pkgs_install() {
}

imex_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-1
elif [ "$DRIVER_BRANCH" -ge "550" ]; then
apt-get install -y --no-install-recommends nvidia-imex-${DRIVER_BRANCH}=${DRIVER_VERSION}-1;
Expand Down
16 changes: 12 additions & 4 deletions ubuntu24.04/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,19 @@ setup_cuda_repo() {
}

fabricmanager_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-1
else
apt-get install -y --no-install-recommends nvidia-fabricmanager-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
fi
}

nscq_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-1
else
apt-get install -y --no-install-recommends libnvidia-nscq-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
Expand All @@ -63,7 +67,9 @@ nscq_install() {
# libnvsdm packages are not available for arm64
nvsdm_install() {
if [ "$TARGETARCH" = "amd64" ]; then
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-1
elif [ "$DRIVER_BRANCH" -ge "570" ]; then
apt-get install -y --no-install-recommends libnvsdm-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
Expand All @@ -78,7 +84,9 @@ nvlink5_pkgs_install() {
}

imex_install() {
if [ "$DRIVER_BRANCH" -ge "580" ]; then
if [ "$DRIVER_BRANCH" -ge "590" ]; then
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-0ubuntu1
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-1
elif [ "$DRIVER_BRANCH" -ge "550" ]; then
apt-get install -y --no-install-recommends nvidia-imex-${DRIVER_BRANCH}=${DRIVER_VERSION}-1;
Expand Down
2 changes: 1 addition & 1 deletion versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.

# DRIVER_VERSIONS contains latest version in all active datacenter branches
DRIVER_VERSIONS ?= 535.274.02 570.195.03 580.105.08
DRIVER_VERSIONS ?= 535.274.02 570.195.03 580.105.08 590.48.01

GOLANG_VERSION := 1.25.5
Loading