Skip to content

Commit 37e5270

Browse files
committed
DOC v25.12 Updates [skip ci]
1 parent b5b4232 commit 37e5270

File tree

18 files changed

+63
-63
lines changed

18 files changed

+63
-63
lines changed

.devcontainer/cuda12.9-conda/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
"args": {
66
"CUDA": "12.9",
77
"PYTHON_PACKAGE_MANAGER": "conda",
8-
"BASE": "rapidsai/devcontainers:25.10-cpp-mambaforge"
8+
"BASE": "rapidsai/devcontainers:25.12-cpp-mambaforge"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda12.9-conda",
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.12-cuda12.9-conda",
1515
"--ulimit",
1616
"nofile=500000"
1717
],
1818
"hostRequirements": {"gpu": "optional"},
1919
"features": {
20-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
20+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.12": {}
2121
},
2222
"overrideFeatureInstallOrder": [
2323
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda12.9-pip/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
"args": {
66
"CUDA": "12.9",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.10-cpp-cuda12.9"
8+
"BASE": "rapidsai/devcontainers:25.12-cpp-cuda12.9"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda12.9-pip",
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.12-cuda12.9-pip",
1515
"--ulimit",
1616
"nofile=500000"
1717
],
1818
"hostRequirements": {"gpu": "optional"},
1919
"features": {
20-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
20+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.12": {}
2121
},
2222
"overrideFeatureInstallOrder": [
2323
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda13.0-conda/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
"args": {
66
"CUDA": "13.0",
77
"PYTHON_PACKAGE_MANAGER": "conda",
8-
"BASE": "rapidsai/devcontainers:25.10-cpp-mambaforge"
8+
"BASE": "rapidsai/devcontainers:25.12-cpp-mambaforge"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda13.0-conda",
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.12-cuda13.0-conda",
1515
"--ulimit",
1616
"nofile=500000"
1717
],
1818
"hostRequirements": {"gpu": "optional"},
1919
"features": {
20-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
20+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.12": {}
2121
},
2222
"overrideFeatureInstallOrder": [
2323
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda13.0-pip/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
"args": {
66
"CUDA": "13.0",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.10-cpp-cuda13.0"
8+
"BASE": "rapidsai/devcontainers:25.12-cpp-cuda13.0"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda13.0-pip",
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.12-cuda13.0-pip",
1515
"--ulimit",
1616
"nofile=500000"
1717
],
1818
"hostRequirements": {"gpu": "optional"},
1919
"features": {
20-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
20+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.12": {}
2121
},
2222
"overrideFeatureInstallOrder": [
2323
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.github/workflows/build.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
jobs:
3535
cpp-build:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.12
3838
with:
3939
build_type: ${{ inputs.build_type || 'branch' }}
4040
branch: ${{ inputs.branch }}
@@ -44,7 +44,7 @@ jobs:
4444
python-build:
4545
needs: [cpp-build]
4646
secrets: inherit
47-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
47+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.12
4848
with:
4949
build_type: ${{ inputs.build_type || 'branch' }}
5050
branch: ${{ inputs.branch }}
@@ -54,7 +54,7 @@ jobs:
5454
upload-conda:
5555
needs: [cpp-build, python-build]
5656
secrets: inherit
57-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.10
57+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.12
5858
with:
5959
build_type: ${{ inputs.build_type || 'branch' }}
6060
branch: ${{ inputs.branch }}
@@ -64,19 +64,19 @@ jobs:
6464
if: github.ref_type == 'branch'
6565
needs: python-build
6666
secrets: inherit
67-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
67+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.12
6868
with:
6969
arch: "amd64"
7070
branch: ${{ inputs.branch }}
7171
build_type: ${{ inputs.build_type || 'branch' }}
72-
container_image: "rapidsai/ci-conda:25.08-latest"
72+
container_image: "rapidsai/ci-conda:25.12-latest"
7373
date: ${{ inputs.date }}
7474
node_type: "gpu-l4-latest-1"
7575
script: "ci/build_docs.sh"
7676
sha: ${{ inputs.sha }}
7777
wheel-build-cpp:
7878
secrets: inherit
79-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
79+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.12
8080
with:
8181
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
8282
build_type: ${{ inputs.build_type || 'branch' }}
@@ -89,7 +89,7 @@ jobs:
8989
wheel-build-python:
9090
needs: wheel-build-cpp
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
92+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.12
9393
with:
9494
build_type: ${{ inputs.build_type || 'branch' }}
9595
branch: ${{ inputs.branch }}
@@ -101,7 +101,7 @@ jobs:
101101
wheel-publish-cpp:
102102
needs: wheel-build-cpp
103103
secrets: inherit
104-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
104+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.12
105105
with:
106106
build_type: ${{ inputs.build_type || 'branch' }}
107107
branch: ${{ inputs.branch }}
@@ -112,7 +112,7 @@ jobs:
112112
wheel-publish-python:
113113
needs: wheel-build-python
114114
secrets: inherit
115-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
115+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.12
116116
with:
117117
build_type: ${{ inputs.build_type || 'branch' }}
118118
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- wheel-python-tests
2828
- telemetry-setup
2929
secrets: inherit
30-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.10
30+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.12
3131
if: always()
3232
with:
3333
needs: ${{ toJSON(needs) }}
@@ -43,7 +43,7 @@ jobs:
4343
repo: kvikio
4444
changed-files:
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.10
46+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.12
4747
with:
4848
files_yaml: |
4949
test_cpp:
@@ -86,63 +86,63 @@ jobs:
8686
checks:
8787
secrets: inherit
8888
needs: telemetry-setup
89-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.10
89+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.12
9090
with:
9191
ignored_pr_jobs: telemetry-summarize
9292
conda-cpp-build:
9393
needs: checks
9494
secrets: inherit
95-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
95+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.12
9696
with:
9797
build_type: pull-request
9898
script: ci/build_cpp.sh
9999
conda-cpp-tests:
100100
needs: [conda-cpp-build, changed-files]
101101
secrets: inherit
102-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.10
102+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.12
103103
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
104104
with:
105105
build_type: pull-request
106106
script: ci/test_cpp.sh
107107
conda-java-tests:
108108
needs: conda-cpp-build
109109
secrets: inherit
110-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
110+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.12
111111
with:
112112
build_type: pull-request
113113
node_type: "gpu-l4-latest-1"
114114
arch: "amd64"
115-
container_image: "rapidsai/ci-conda:25.08-latest"
115+
container_image: "rapidsai/ci-conda:25.12-latest"
116116
script: "ci/test_java.sh"
117117
conda-python-build:
118118
needs: conda-cpp-build
119119
secrets: inherit
120-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
120+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.12
121121
with:
122122
build_type: pull-request
123123
script: ci/build_python.sh
124124
conda-python-tests:
125125
needs: [conda-python-build, changed-files]
126126
secrets: inherit
127-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
127+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.12
128128
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
129129
with:
130130
build_type: pull-request
131131
script: ci/test_python.sh
132132
docs-build:
133133
needs: conda-python-build
134134
secrets: inherit
135-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
135+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.12
136136
with:
137137
build_type: pull-request
138138
node_type: "gpu-l4-latest-1"
139139
arch: "amd64"
140-
container_image: "rapidsai/ci-conda:25.08-latest"
140+
container_image: "rapidsai/ci-conda:25.12-latest"
141141
script: "ci/build_docs.sh"
142142
devcontainer:
143143
needs: telemetry-setup
144144
secrets: inherit
145-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.10
145+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.12
146146
with:
147147
arch: '["amd64", "arm64"]'
148148
cuda: '["13.0"]'
@@ -160,7 +160,7 @@ jobs:
160160
sccache --show-adv-stats | tee telemetry-artifacts/sccache-stats.txt;
161161
wheel-cpp-build:
162162
secrets: inherit
163-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
163+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.12
164164
with:
165165
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
166166
build_type: pull-request
@@ -170,7 +170,7 @@ jobs:
170170
wheel-python-build:
171171
needs: wheel-cpp-build
172172
secrets: inherit
173-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
173+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.12
174174
with:
175175
build_type: pull-request
176176
script: ci/build_wheel_python.sh
@@ -179,7 +179,7 @@ jobs:
179179
wheel-python-tests:
180180
needs: [wheel-python-build, changed-files]
181181
secrets: inherit
182-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
182+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.12
183183
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
184184
with:
185185
build_type: pull-request

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
cpp-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.10
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.12
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
sha: ${{ inputs.sha }}
3535
python-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.12
3838
with:
3939
build_type: ${{ inputs.build_type }}
4040
branch: ${{ inputs.branch }}
@@ -43,13 +43,13 @@ jobs:
4343
sha: ${{ inputs.sha }}
4444
conda-java-tests:
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
46+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.12
4747
with:
4848
build_type: ${{ inputs.build_type }}
4949
branch: ${{ inputs.branch }}
5050
date: ${{ inputs.date }}
5151
sha: ${{ inputs.sha }}
5252
node_type: "gpu-l4-latest-1"
5353
arch: "amd64"
54-
container_image: "rapidsai/ci-conda:25.08-latest"
54+
container_image: "rapidsai/ci-conda:25.12-latest"
5555
script: "ci/test_java.sh"

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.10
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.12
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

RAPIDS_BRANCH

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
branch-25.10
1+
branch-25.12

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.10.00
1+
25.12.00

0 commit comments

Comments
 (0)