Skip to content

Commit fe7f6b5

Browse files
authored
Use shared-workflows branch-25.04 (#6298)
This completes the migration to NVKS runners now that all libraries have been tested and rapidsai/shared-workflows#273 has been merged. xref: rapidsai/build-infra#184 Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) URL: #6298
1 parent d7f6265 commit fe7f6b5

File tree

4 files changed

+31
-31
lines changed

4 files changed

+31
-31
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
cpp-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@nvks-runners
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.04
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -38,7 +38,7 @@ jobs:
3838
if: github.ref_type == 'branch'
3939
needs: [python-build]
4040
secrets: inherit
41-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
41+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
4242
with:
4343
arch: "amd64"
4444
branch: ${{ inputs.branch }}
@@ -51,7 +51,7 @@ jobs:
5151
python-build:
5252
needs: [cpp-build]
5353
secrets: inherit
54-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
54+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
5555
with:
5656
build_type: ${{ inputs.build_type || 'branch' }}
5757
branch: ${{ inputs.branch }}
@@ -60,15 +60,15 @@ jobs:
6060
upload-conda:
6161
needs: [cpp-build, python-build]
6262
secrets: inherit
63-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@nvks-runners
63+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.04
6464
with:
6565
build_type: ${{ inputs.build_type || 'branch' }}
6666
branch: ${{ inputs.branch }}
6767
date: ${{ inputs.date }}
6868
sha: ${{ inputs.sha }}
6969
wheel-build-libcuml:
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
71+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
7272
with:
7373
build_type: ${{ inputs.build_type || 'branch' }}
7474
branch: ${{ inputs.branch }}
@@ -86,7 +86,7 @@ jobs:
8686
wheel-publish-libcuml:
8787
needs: wheel-build-libcuml
8888
secrets: inherit
89-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
89+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
9090
with:
9191
build_type: ${{ inputs.build_type || 'branch' }}
9292
branch: ${{ inputs.branch }}
@@ -97,7 +97,7 @@ jobs:
9797
wheel-build-cuml:
9898
needs: wheel-build-libcuml
9999
secrets: inherit
100-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
100+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
101101
with:
102102
build_type: ${{ inputs.build_type || 'branch' }}
103103
branch: ${{ inputs.branch }}
@@ -107,7 +107,7 @@ jobs:
107107
wheel-publish-cuml:
108108
needs: wheel-build-cuml
109109
secrets: inherit
110-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@nvks-runners
110+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
111111
with:
112112
build_type: ${{ inputs.build_type || 'branch' }}
113113
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- wheel-tests-cuml
3232
- devcontainer
3333
secrets: inherit
34-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@nvks-runners
34+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.04
3535
if: always()
3636
with:
3737
needs: ${{ toJSON(needs) }}
@@ -59,7 +59,7 @@ jobs:
5959
changed-files:
6060
secrets: inherit
6161
needs: telemetry-setup
62-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@nvks-runners
62+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.04
6363
with:
6464
files_yaml: |
6565
test_cpp:
@@ -93,15 +93,15 @@ jobs:
9393
checks:
9494
secrets: inherit
9595
needs: telemetry-setup
96-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners
96+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.04
9797
with:
9898
enable_check_generated_files: false
9999
ignored_pr_jobs: >-
100100
optional-job-conda-python-tests-cudf-pandas-integration telemetry-summarize
101101
clang-tidy:
102102
needs: checks
103103
secrets: inherit
104-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
104+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
105105
with:
106106
build_type: pull-request
107107
node_type: "cpu8"
@@ -111,41 +111,41 @@ jobs:
111111
conda-cpp-build:
112112
needs: checks
113113
secrets: inherit
114-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@nvks-runners
114+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.04
115115
with:
116116
build_type: pull-request
117117
conda-cpp-tests:
118118
needs: [conda-cpp-build, changed-files]
119119
secrets: inherit
120-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
120+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04
121121
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
122122
with:
123123
build_type: pull-request
124124
conda-cpp-checks:
125125
needs: conda-cpp-build
126126
secrets: inherit
127-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@nvks-runners
127+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.04
128128
with:
129129
build_type: pull-request
130130
enable_check_symbols: true
131131
conda-python-build:
132132
needs: conda-cpp-build
133133
secrets: inherit
134-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
134+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
135135
with:
136136
build_type: pull-request
137137
conda-python-tests-singlegpu:
138138
needs: [conda-python-build, changed-files]
139139
secrets: inherit
140-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
140+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
141141
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
142142
with:
143143
build_type: pull-request
144144
script: "ci/test_python_singlegpu.sh"
145145
optional-job-conda-python-tests-cudf-pandas-integration:
146146
needs: [conda-python-build, changed-files]
147147
secrets: inherit
148-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
148+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
149149
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
150150
with:
151151
matrix_filter: map(select(.ARCH == "amd64"))
@@ -154,15 +154,15 @@ jobs:
154154
conda-python-tests-dask:
155155
needs: [conda-python-build, changed-files]
156156
secrets: inherit
157-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
157+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
158158
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
159159
with:
160160
build_type: pull-request
161161
script: "ci/test_python_dask.sh"
162162
conda-notebook-tests:
163163
needs: [conda-python-build, changed-files]
164164
secrets: inherit
165-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
165+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
166166
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
167167
with:
168168
build_type: pull-request
@@ -173,7 +173,7 @@ jobs:
173173
docs-build:
174174
needs: conda-python-build
175175
secrets: inherit
176-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
176+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
177177
with:
178178
build_type: pull-request
179179
node_type: "gpu-l4-latest-1"
@@ -183,7 +183,7 @@ jobs:
183183
wheel-build-libcuml:
184184
needs: checks
185185
secrets: inherit
186-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
186+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
187187
with:
188188
build_type: pull-request
189189
branch: ${{ inputs.branch }}
@@ -198,22 +198,22 @@ jobs:
198198
wheel-build-cuml:
199199
needs: [checks, wheel-build-libcuml]
200200
secrets: inherit
201-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
201+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
202202
with:
203203
build_type: pull-request
204204
script: ci/build_wheel_cuml.sh
205205
wheel-tests-cuml:
206206
needs: [wheel-build-cuml, changed-files]
207207
secrets: inherit
208-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
208+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
209209
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
210210
with:
211211
build_type: pull-request
212212
script: ci/test_wheel.sh
213213
devcontainer:
214214
needs: telemetry-setup
215215
secrets: inherit
216-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@nvks-runners
216+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.04
217217
with:
218218
arch: '["amd64"]'
219219
cuda: '["12.8"]'

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
conda-cpp-checks:
2121
secrets: inherit
22-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@nvks-runners
22+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.04
2323
with:
2424
build_type: ${{ inputs.build_type }}
2525
branch: ${{ inputs.branch }}
@@ -29,15 +29,15 @@ jobs:
2929
symbol_exclusions: raft_cutlass
3030
conda-cpp-tests:
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
32+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04
3333
with:
3434
build_type: ${{ inputs.build_type }}
3535
branch: ${{ inputs.branch }}
3636
date: ${{ inputs.date }}
3737
sha: ${{ inputs.sha }}
3838
conda-python-tests-singlegpu:
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
4141
with:
4242
build_type: ${{ inputs.build_type }}
4343
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646
script: "ci/test_python_singlegpu.sh"
4747
conda-python-tests-dask:
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
5050
with:
5151
build_type: ${{ inputs.build_type }}
5252
branch: ${{ inputs.branch }}
@@ -55,7 +55,7 @@ jobs:
5555
script: "ci/test_python_dask.sh"
5656
wheel-tests-cuml:
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
58+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
5959
with:
6060
build_type: ${{ inputs.build_type }}
6161
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@nvks-runners
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)