Skip to content

Commit 551fe96

Browse files
committed
DOC v25.10 Updates [skip ci]
1 parent a4da26b commit 551fe96

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 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
if: github.ref_type == 'branch'
4646
needs: [python-build]
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
48+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
4949
with:
5050
arch: "amd64"
5151
branch: ${{ inputs.branch }}
@@ -58,7 +58,7 @@ jobs:
5858
python-build:
5959
needs: [cpp-build]
6060
secrets: inherit
61-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
61+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
6262
with:
6363
build_type: ${{ inputs.build_type || 'branch' }}
6464
branch: ${{ inputs.branch }}
@@ -68,15 +68,15 @@ jobs:
6868
upload-conda:
6969
needs: [cpp-build, python-build]
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.08
71+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.10
7272
with:
7373
build_type: ${{ inputs.build_type || 'branch' }}
7474
branch: ${{ inputs.branch }}
7575
date: ${{ inputs.date }}
7676
sha: ${{ inputs.sha }}
7777
wheel-build:
7878
secrets: inherit
79-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
79+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
8080
with:
8181
build_type: ${{ inputs.build_type || 'branch' }}
8282
branch: ${{ inputs.branch }}
@@ -88,7 +88,7 @@ jobs:
8888
wheel-publish:
8989
needs: wheel-build
9090
secrets: inherit
91-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
91+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
9292
with:
9393
build_type: ${{ inputs.build_type || 'branch' }}
9494
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- wheel-tests
1919
- telemetry-setup
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.08
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.10
2222
telemetry-setup:
2323
runs-on: ubuntu-latest
2424
continue-on-error: true
@@ -33,34 +33,34 @@ jobs:
3333
checks:
3434
secrets: inherit
3535
needs: telemetry-setup
36-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.08
36+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.10
3737
with:
3838
ignored_pr_jobs: telemetry-summarize
3939
conda-cpp-build:
4040
needs: checks
4141
secrets: inherit
42-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.08
42+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
4343
with:
4444
build_type: pull-request
4545
script: ci/build_cpp.sh
4646
conda-python-build:
4747
needs: conda-cpp-build
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
5050
with:
5151
build_type: pull-request
5252
script: ci/build_python.sh
5353
conda-python-tests:
5454
needs: conda-python-build
5555
secrets: inherit
56-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
56+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
5757
with:
5858
build_type: pull-request
5959
script: ci/test_python.sh
6060
docs-build:
6161
needs: conda-python-build
6262
secrets: inherit
63-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
63+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
6464
with:
6565
build_type: pull-request
6666
node_type: "gpu-l4-latest-1"
@@ -70,7 +70,7 @@ jobs:
7070
wheel-build:
7171
needs: checks
7272
secrets: inherit
73-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
73+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
7474
with:
7575
build_type: pull-request
7676
script: ci/build_wheel.sh
@@ -79,7 +79,7 @@ jobs:
7979
wheel-tests:
8080
needs: wheel-build
8181
secrets: inherit
82-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
82+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
8383
with:
8484
build_type: pull-request
8585
script: ci/test_wheel.sh

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
conda-python-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
sha: ${{ inputs.sha }}
3535
wheel-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
37+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
3838
with:
3939
build_type: ${{ inputs.build_type }}
4040
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

cucim.code-workspace

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"CUCIM_TESTDATA_FOLDER": "${workspaceDirectory}/test_data",
3434
// Add cuslide plugin's library path to LD_LIBRARY_PATH
3535
"LD_LIBRARY_PATH": "${workspaceDirectory}/build-debug/lib:${workspaceDirectory}/cpp/plugins/cucim.kit.cuslide/build-debug/lib:${workspaceDirectory}/temp/cuda/lib64:${os_env:LD_LIBRARY_PATH}",
36-
"CUCIM_TEST_PLUGIN_PATH": "cucim.kit.cuslide@25.08.00.so"
36+
"CUCIM_TEST_PLUGIN_PATH": "cucim.kit.cuslide@25.10.00.so"
3737
},
3838
"cwd": "${workspaceDirectory}",
3939
"catch2": {
@@ -226,7 +226,7 @@
226226
},
227227
{
228228
"name": "CUCIM_TEST_PLUGIN_PATH",
229-
"value": "cucim.kit.cuslide@25.08.00.so"
229+
"value": "cucim.kit.cuslide@25.10.00.so"
230230
}
231231
],
232232
"console": "externalTerminal",
@@ -254,7 +254,7 @@
254254
},
255255
{
256256
"name": "CUCIM_TEST_PLUGIN_PATH",
257-
"value": "cucim.kit.cuslide@25.08.00.so"
257+
"value": "cucim.kit.cuslide@25.10.00.so"
258258
}
259259
],
260260
"console": "externalTerminal",
@@ -286,7 +286,7 @@
286286
},
287287
{
288288
"name": "CUCIM_TEST_PLUGIN_PATH",
289-
"value": "cucim.kit.cuslide@25.08.00.so"
289+
"value": "cucim.kit.cuslide@25.10.00.so"
290290
}
291291
],
292292
"console": "externalTerminal",

dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ dependencies:
188188
common:
189189
- output_types: conda
190190
packages:
191-
- cucim==25.8.*,>=0.0.0a0
191+
- cucim==25.10.*,>=0.0.0a0
192192
depends_on_libcucim:
193193
common:
194194
- output_types: conda
195195
packages:
196-
- libcucim==25.8.*,>=0.0.0a0
196+
- libcucim==25.10.*,>=0.0.0a0
197197
develop:
198198
common:
199199
- output_types: [conda, requirements, pyproject]

0 commit comments

Comments
 (0)