Skip to content

Commit c2a66ab

Browse files
committed
DOC v25.10 Updates [skip ci]
1 parent 2c95714 commit c2a66ab

File tree

20 files changed

+145
-145
lines changed

20 files changed

+145
-145
lines changed

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

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
"args": {
66
"CUDA": "12.9",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.08-cpp-cuda12.9-ucx1.18.0-openmpi-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.10-cpp-cuda12.9-ucx1.18.0-openmpi-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.08-cuda12.9-pip"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda12.9-pip"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/cuda:25.8": {
18+
"ghcr.io/rapidsai/devcontainers/features/cuda:25.10": {
1919
"version": "12.9",
2020
"installcuBLAS": true,
2121
"installcuSOLVER": true,
2222
"installcuRAND": true,
2323
"installcuSPARSE": true
2424
},
25-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.8": {}
25+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
2626
},
2727
"overrideFeatureInstallOrder": [
2828
"ghcr.io/rapidsai/devcontainers/features/cuda",

.github/workflows/build.yaml

Lines changed: 10 additions & 10 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.08
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
3838
with:
3939
build_type: ${{ inputs.build_type || 'branch' }}
4040
branch: ${{ inputs.branch }}
@@ -45,7 +45,7 @@ jobs:
4545
python-build:
4646
needs: [cpp-build]
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
48+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
4949
with:
5050
build_type: ${{ inputs.build_type || 'branch' }}
5151
branch: ${{ inputs.branch }}
@@ -55,7 +55,7 @@ jobs:
5555
upload-conda:
5656
needs: [cpp-build, python-build]
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.08
58+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.10
5959
with:
6060
build_type: ${{ inputs.build_type || 'branch' }}
6161
branch: ${{ inputs.branch }}
@@ -65,7 +65,7 @@ jobs:
6565
if: github.ref_type == 'branch'
6666
needs: python-build
6767
secrets: inherit
68-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
68+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
6969
with:
7070
arch: "amd64"
7171
branch: ${{ inputs.branch }}
@@ -77,7 +77,7 @@ jobs:
7777
sha: ${{ inputs.sha }}
7878
wheel-build-libcugraph:
7979
secrets: inherit
80-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
80+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
8181
with:
8282
# build for every combination of arch and CUDA version, but only for the latest Python version
8383
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
@@ -92,7 +92,7 @@ jobs:
9292
wheel-publish-libcugraph:
9393
needs: wheel-build-libcugraph
9494
secrets: inherit
95-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
95+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
9696
with:
9797
build_type: ${{ inputs.build_type || 'branch' }}
9898
branch: ${{ inputs.branch }}
@@ -103,7 +103,7 @@ jobs:
103103
wheel-build-pylibcugraph:
104104
needs: wheel-build-libcugraph
105105
secrets: inherit
106-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
106+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
107107
with:
108108
build_type: ${{ inputs.build_type || 'branch' }}
109109
branch: ${{ inputs.branch }}
@@ -115,7 +115,7 @@ jobs:
115115
wheel-publish-pylibcugraph:
116116
needs: wheel-build-pylibcugraph
117117
secrets: inherit
118-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
118+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
119119
with:
120120
build_type: ${{ inputs.build_type || 'branch' }}
121121
branch: ${{ inputs.branch }}
@@ -126,7 +126,7 @@ jobs:
126126
wheel-build-cugraph:
127127
needs: wheel-build-pylibcugraph
128128
secrets: inherit
129-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
129+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
130130
with:
131131
build_type: ${{ inputs.build_type || 'branch' }}
132132
branch: ${{ inputs.branch }}
@@ -138,7 +138,7 @@ jobs:
138138
wheel-publish-cugraph:
139139
needs: wheel-build-cugraph
140140
secrets: inherit
141-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
141+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
142142
with:
143143
build_type: ${{ inputs.build_type || 'branch' }}
144144
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- telemetry-setup
3232
- devcontainer
3333
secrets: inherit
34-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.08
34+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.10
3535
if: always()
3636
with:
3737
needs: ${{ toJSON(needs) }}
@@ -56,7 +56,7 @@ jobs:
5656
changed-files:
5757
secrets: inherit
5858
needs: telemetry-setup
59-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.08
59+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.10
6060
with:
6161
files_yaml: |
6262
test_cpp:
@@ -90,52 +90,52 @@ jobs:
9090
checks:
9191
secrets: inherit
9292
needs: telemetry-setup
93-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.08
93+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.10
9494
with:
9595
enable_check_generated_files: false
9696
ignored_pr_jobs: telemetry-summarize
9797
conda-cpp-build:
9898
needs: checks
9999
secrets: inherit
100-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.08
100+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
101101
with:
102102
build_type: pull-request
103103
node_type: cpu32
104104
script: ci/build_cpp.sh
105105
conda-cpp-tests:
106106
needs: [conda-cpp-build, changed-files]
107107
secrets: inherit
108-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.08
108+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.10
109109
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
110110
with:
111111
build_type: pull-request
112112
script: ci/test_cpp.sh
113113
conda-cpp-checks:
114114
needs: conda-cpp-build
115115
secrets: inherit
116-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.08
116+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.10
117117
with:
118118
build_type: pull-request
119119
symbol_exclusions: (cugraph::ops|hornet|void writeEdgeCountsKernel|void markUniqueOffsetsKernel)
120120
conda-python-build:
121121
needs: conda-cpp-build
122122
secrets: inherit
123-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
123+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
124124
with:
125125
build_type: pull-request
126126
script: ci/build_python.sh
127127
conda-python-tests:
128128
needs: [conda-python-build, changed-files]
129129
secrets: inherit
130-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
130+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
131131
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
132132
with:
133133
build_type: pull-request
134134
script: ci/test_python.sh
135135
conda-notebook-tests:
136136
needs: [conda-python-build, changed-files]
137137
secrets: inherit
138-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
138+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
139139
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
140140
with:
141141
build_type: pull-request
@@ -146,7 +146,7 @@ jobs:
146146
docs-build:
147147
needs: conda-python-build
148148
secrets: inherit
149-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
149+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
150150
with:
151151
build_type: pull-request
152152
node_type: "gpu-l4-latest-1"
@@ -156,7 +156,7 @@ jobs:
156156
wheel-build-libcugraph:
157157
needs: checks
158158
secrets: inherit
159-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
159+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
160160
with:
161161
# build for every combination of arch and CUDA version, but only for the latest Python
162162
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
@@ -167,7 +167,7 @@ jobs:
167167
wheel-build-pylibcugraph:
168168
needs: wheel-build-libcugraph
169169
secrets: inherit
170-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
170+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
171171
with:
172172
build_type: pull-request
173173
script: ci/build_wheel_pylibcugraph.sh
@@ -176,15 +176,15 @@ jobs:
176176
wheel-tests-pylibcugraph:
177177
needs: [wheel-build-pylibcugraph, changed-files]
178178
secrets: inherit
179-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
179+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
180180
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
181181
with:
182182
build_type: pull-request
183183
script: ci/test_wheel_pylibcugraph.sh
184184
wheel-build-cugraph:
185185
needs: wheel-build-pylibcugraph
186186
secrets: inherit
187-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
187+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
188188
with:
189189
build_type: pull-request
190190
script: ci/build_wheel_cugraph.sh
@@ -193,15 +193,15 @@ jobs:
193193
wheel-tests-cugraph:
194194
needs: [wheel-build-cugraph, changed-files]
195195
secrets: inherit
196-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
196+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
197197
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
198198
with:
199199
build_type: pull-request
200200
script: ci/test_wheel_cugraph.sh
201201
devcontainer:
202202
secrets: inherit
203203
needs: telemetry-setup
204-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.08
204+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.10
205205
with:
206206
arch: '["amd64"]'
207207
cuda: '["12.9"]'

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
conda-cpp-checks:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.08
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.10
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
symbol_exclusions: (cugraph::ops|hornet|void writeEdgeCountsKernel|void markUniqueOffsetsKernel)
3535
conda-cpp-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.08
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.10
3838
with:
3939
build_type: ${{ inputs.build_type }}
4040
branch: ${{ inputs.branch }}
@@ -43,7 +43,7 @@ jobs:
4343
sha: ${{ inputs.sha }}
4444
conda-python-tests:
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
46+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
4747
with:
4848
build_type: ${{ inputs.build_type }}
4949
branch: ${{ inputs.branch }}
@@ -52,7 +52,7 @@ jobs:
5252
sha: ${{ inputs.sha }}
5353
wheel-tests-pylibcugraph:
5454
secrets: inherit
55-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
55+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
5656
with:
5757
build_type: ${{ inputs.build_type }}
5858
branch: ${{ inputs.branch }}
@@ -61,7 +61,7 @@ jobs:
6161
script: ci/test_wheel_pylibcugraph.sh
6262
wheel-tests-cugraph:
6363
secrets: inherit
64-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
64+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
6565
with:
6666
build_type: ${{ inputs.build_type }}
6767
branch: ${{ inputs.branch }}

.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.08
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.10
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

VERSION

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

0 commit comments

Comments
 (0)