Skip to content

Commit 398fea0

Browse files
authored
Use RAPIDS 25.04 workflows. (#226)
With RAPIDS 25.04, we updated our CI jobs to use the new NVKS cluster. This PR updates jupyterlab-nvdashboard to use that new CI matrix on the latest cluster.
1 parent 2afa47b commit 398fea0

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/build.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ concurrency:
2929
jobs:
3030
conda-python-build:
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
32+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
3333
with:
3434
build_type: ${{ inputs.build_type || 'branch' }}
3535
branch: ${{ inputs.branch }}
@@ -40,15 +40,15 @@ jobs:
4040
upload-conda:
4141
needs: conda-python-build
4242
secrets: inherit
43-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02
43+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.04
4444
with:
4545
build_type: ${{ inputs.build_type || 'branch' }}
4646
branch: ${{ inputs.branch }}
4747
date: ${{ inputs.date }}
4848
sha: ${{ inputs.sha }}
4949
wheel-build:
5050
secrets: inherit
51-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
51+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
5252
with:
5353
build_type: ${{ inputs.build_type || 'branch' }}
5454
branch: ${{ inputs.branch }}
@@ -60,7 +60,7 @@ jobs:
6060
wheel-publish:
6161
needs: wheel-build
6262
secrets: inherit
63-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
63+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
6464
with:
6565
build_type: ${{ inputs.build_type || 'branch' }}
6666
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@ jobs:
1818
- wheel-build
1919
- wheel-tests
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.04
2222
checks:
2323
secrets: inherit
24-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
24+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.04
2525
conda-python-build:
2626
needs: checks
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
2929
with:
3030
build_type: pull-request
3131
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
3232
matrix_filter: map(select(.ARCH == "amd64")) | max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]) | [.]
3333
conda-python-tests:
3434
needs: conda-python-build
3535
secrets: inherit
36-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
36+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
3737
with:
3838
build_type: pull-request
3939
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
4040
matrix_filter: map(select(.ARCH == "amd64")) | max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]) | [.]
4141
wheel-build:
4242
needs: checks
4343
secrets: inherit
44-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
44+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
4545
with:
4646
build_type: pull-request
4747
# This selects the latest supported Python + CUDA
@@ -50,7 +50,7 @@ jobs:
5050
wheel-tests:
5151
needs: wheel-build
5252
secrets: inherit
53-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
53+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
5454
with:
5555
build_type: pull-request
5656
# This selects the latest supported Python + CUDA

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

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

0 commit comments

Comments
 (0)