From db77e7855556ed1fad516c48fa6c733ace73e2c9 Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Tue, 17 Oct 2023 17:01:31 -0600 Subject: [PATCH 1/2] feat: Enable NVIDIA driver version 545 This builds images with NVIDIA driver version 545, and sets 545 as the latest driver version --- .github/workflows/build.yml | 4 ++-- Containerfile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0dbb55f..6f7762a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: - mate - vauxite major_version: [37, 38, 39] - driver_version: [470, 535] + driver_version: [470, 535, 545] include: - major_version: 37 is_latest_version: false @@ -39,7 +39,7 @@ jobs: is_latest_version: true is_stable_version: true is_gts_driver: true - - driver_version: 535 + - driver_version: 545 is_latest_driver: true - major_version: 39 is_latest_version: true diff --git a/Containerfile b/Containerfile index ad5541a..262abe1 100644 --- a/Containerfile +++ b/Containerfile @@ -1,14 +1,14 @@ ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}" ARG BASE_IMAGE="ghcr.io/ublue-os/${IMAGE_NAME}-main" -ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-38}" +ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39}" FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION} AS nvidia ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}" ARG IMAGE_VENDOR="ublue-os" ARG IMAGE_FLAVOR="${IMAGE_FLAVOR:-nvidia}" -ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-38}" -ARG NVIDIA_MAJOR_VERSION="${NVIDIA_MAJOR_VERSION:-535}" +ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39}" +ARG NVIDIA_MAJOR_VERSION="${NVIDIA_MAJOR_VERSION:-545}" COPY image-info.sh /tmp/image-info.sh COPY install.sh /tmp/install.sh From 8a6185a8d2139a49e08a4980144f5b5211042b8a Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Fri, 1 Dec 2023 10:04:48 -0800 Subject: [PATCH 2/2] chore: Drop 535 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 144041f..8000e66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: - mate - vauxite major_version: [37, 38, 39] - driver_version: [470, 535, 545] + driver_version: [470, 545] include: - major_version: 37 is_latest_version: false