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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ One particular combination is also chosen for `latest` tags like these:
For example, during the 25.10 release the following might all point to the same image:

```text
rapidsai/ci-conda:25.10-cuda13.0.0-ubuntu24.04-py3.13
rapidsai/ci-conda:cuda13.0.0-ubuntu24.04-py3.13
rapidsai/ci-conda:25.10-cuda13.0.1-ubuntu24.04-py3.13
rapidsai/ci-conda:cuda13.0.1-ubuntu24.04-py3.13
rapidsai/ci-conda:25.10-latest
rapidsai/ci-conda:latest
```
Expand All @@ -36,11 +36,11 @@ But starting with the 25.12 release...

```text
# these images are unchanged
rapidsai/ci-conda:25.10-cuda13.0.0-ubuntu24.04-py3.13
rapidsai/ci-conda:25.10-cuda13.0.1-ubuntu24.04-py3.13
rapidsai/ci-conda:25.10-latest

# these now point to 25.12
rapidsai/ci-conda:cuda13.0.0-ubuntu24.04-py3.13
rapidsai/ci-conda:cuda13.0.1-ubuntu24.04-py3.13
rapidsai/ci-conda:latest
```

Expand All @@ -59,7 +59,7 @@ To build the dockerfiles locally, you may use the following snippets:

```sh
export LINUX_VER=ubuntu24.04
export CUDA_VER=13.0.0
export CUDA_VER=13.0.1
export PYTHON_VER=3.13
export ARCH=amd64
export IMAGE_REPO=ci-conda
Expand Down
8 changes: 4 additions & 4 deletions latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
# SPDX-License-Identifier: Apache-2.0
# Define the values used for the "latest" tag
miniforge-cuda:
CUDA_VER: "13.0.0"
CUDA_VER: "13.0.1"
PYTHON_VER: "3.13"
LINUX_VER: "ubuntu24.04"
ci-conda:
CUDA_VER: "13.0.0"
CUDA_VER: "13.0.1"
PYTHON_VER: "3.13"
LINUX_VER: "ubuntu24.04"
ci-wheel:
CUDA_VER: "13.0.0"
CUDA_VER: "13.0.1"
PYTHON_VER: "3.13"
# Wheels should always be built with the oldest supported glibc version
LINUX_VER: "rockylinux8"
citestwheel:
CUDA_VER: "13.0.0"
CUDA_VER: "13.0.1"
PYTHON_VER: "3.13"
LINUX_VER: "ubuntu24.04"
2 changes: 1 addition & 1 deletion matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CUDA_VER:
- "12.0.1"
- "12.2.2"
- "12.9.1"
- "13.0.0"
- "13.0.1"
PYTHON_VER:
- "3.10"
- "3.11"
Expand Down