Unverified Commit 636f6db0 authored by Kaniska's avatar Kaniska Committed by GitHub

[nvidia-cuda] - Ubuntu focal EOL change for nvidia-cuda (#1366)

* Ubuntu focal EOL change for nvidia-cuda

* Major version bump

* Major version bump correctly as per the review comment.

* Updating the correct version in readme file as pointed out in review.

* To re-run the tests

---------
Co-authored-by: 's avatarÁlvaro Rausell Guiard <33221237+AlvaroRausell@users.noreply.github.com>
parent e8784d19
...@@ -7,7 +7,7 @@ Installs shared libraries for NVIDIA CUDA. ...@@ -7,7 +7,7 @@ Installs shared libraries for NVIDIA CUDA.
```json ```json
"features": { "features": {
"ghcr.io/devcontainers/features/nvidia-cuda:1": {} "ghcr.io/devcontainers/features/nvidia-cuda:2": {}
} }
``` ```
......
{ {
"id": "nvidia-cuda", "id": "nvidia-cuda",
"version": "1.2.1", "version": "2.0.0",
"name": "NVIDIA CUDA", "name": "NVIDIA CUDA",
"description": "Installs shared libraries for NVIDIA CUDA.", "description": "Installs shared libraries for NVIDIA CUDA.",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda",
......
...@@ -46,7 +46,8 @@ check_packages wget ca-certificates ...@@ -46,7 +46,8 @@ check_packages wget ca-certificates
# Add NVIDIA's package repository to apt so that we can download packages # Add NVIDIA's package repository to apt so that we can download packages
# Always use the ubuntu2004 repo because the other repos (e.g., debian11) are missing packages # Always use the ubuntu2004 repo because the other repos (e.g., debian11) are missing packages
NVIDIA_REPO_URL="https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64" # Updating the repo to ubuntu2204 as ubuntu 20.04 is going out of support.
NVIDIA_REPO_URL="https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64"
KEYRING_PACKAGE="cuda-keyring_1.0-1_all.deb" KEYRING_PACKAGE="cuda-keyring_1.0-1_all.deb"
KEYRING_PACKAGE_URL="$NVIDIA_REPO_URL/$KEYRING_PACKAGE" KEYRING_PACKAGE_URL="$NVIDIA_REPO_URL/$KEYRING_PACKAGE"
KEYRING_PACKAGE_PATH="$(mktemp -d)" KEYRING_PACKAGE_PATH="$(mktemp -d)"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment