Skip to content

Commit 9827f5a

Browse files
authored
Merge branch 'main' into patch-6
2 parents 139875b + 27ca73c commit 9827f5a

4 files changed

Lines changed: 36 additions & 36 deletions

File tree

.github/workflows/build.yaml

Lines changed: 12 additions & 12 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@cuda-13.1.0
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
3838
with:
3939
build_type: ${{ inputs.build_type || 'branch' }}
4040
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646

4747
rocky8-clib-standalone-build:
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
49+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
5050
strategy:
5151
fail-fast: false
5252
matrix:
@@ -69,7 +69,7 @@ jobs:
6969
rust-build:
7070
needs: cpp-build
7171
secrets: inherit
72-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
72+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
7373
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
7474
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
7575
strategy:
@@ -91,7 +91,7 @@ jobs:
9191
go-build:
9292
needs: cpp-build
9393
secrets: inherit
94-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
94+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
9595
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
9696
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
9797
strategy:
@@ -112,7 +112,7 @@ jobs:
112112
java-build:
113113
needs: cpp-build
114114
secrets: inherit
115-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
115+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
116116
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
117117
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
118118
strategy:
@@ -135,7 +135,7 @@ jobs:
135135
python-build:
136136
needs: [cpp-build]
137137
secrets: inherit
138-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.1.0
138+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
139139
with:
140140
build_type: ${{ inputs.build_type || 'branch' }}
141141
branch: ${{ inputs.branch }}
@@ -146,7 +146,7 @@ jobs:
146146
upload-conda:
147147
needs: [cpp-build, python-build]
148148
secrets: inherit
149-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda-13.1.0
149+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
150150
with:
151151
build_type: ${{ inputs.build_type || 'branch' }}
152152
branch: ${{ inputs.branch }}
@@ -161,7 +161,7 @@ jobs:
161161
if: github.ref_type == 'branch'
162162
needs: python-build
163163
secrets: inherit
164-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
164+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
165165
with:
166166
arch: "amd64"
167167
branch: ${{ inputs.branch }}
@@ -173,7 +173,7 @@ jobs:
173173
sha: ${{ inputs.sha }}
174174
wheel-build-libcuvs:
175175
secrets: inherit
176-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.1.0
176+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
177177
with:
178178
build_type: ${{ inputs.build_type || 'branch' }}
179179
branch: ${{ inputs.branch }}
@@ -189,7 +189,7 @@ jobs:
189189
wheel-publish-libcuvs:
190190
needs: wheel-build-libcuvs
191191
secrets: inherit
192-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-13.1.0
192+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
193193
with:
194194
build_type: ${{ inputs.build_type || 'branch' }}
195195
branch: ${{ inputs.branch }}
@@ -200,7 +200,7 @@ jobs:
200200
wheel-build-cuvs:
201201
needs: wheel-build-libcuvs
202202
secrets: inherit
203-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.1.0
203+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
204204
with:
205205
build_type: ${{ inputs.build_type || 'branch' }}
206206
branch: ${{ inputs.branch }}
@@ -214,7 +214,7 @@ jobs:
214214
wheel-publish-cuvs:
215215
needs: wheel-build-cuvs
216216
secrets: inherit
217-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-13.1.0
217+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
218218
with:
219219
build_type: ${{ inputs.build_type || 'branch' }}
220220
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- devcontainer
3030
- telemetry-setup
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-13.1.0
32+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
3333
if: always()
3434
with:
3535
needs: ${{ toJSON(needs) }}
@@ -56,7 +56,7 @@ jobs:
5656
changed-files:
5757
needs: telemetry-setup
5858
secrets: inherit
59-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@cuda-13.1.0
59+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
6060
with:
6161
files_yaml: |
6262
test_cpp:
@@ -132,14 +132,14 @@ jobs:
132132
checks:
133133
needs: telemetry-setup
134134
secrets: inherit
135-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-13.1.0
135+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
136136
with:
137137
enable_check_generated_files: false
138138
ignored_pr_jobs: "telemetry-summarize"
139139
conda-cpp-build:
140140
needs: checks
141141
secrets: inherit
142-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-13.1.0
142+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
143143
with:
144144
build_type: pull-request
145145
node_type: cpu16
@@ -148,7 +148,7 @@ jobs:
148148
conda-cpp-tests:
149149
needs: [conda-cpp-build, changed-files]
150150
secrets: inherit
151-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-13.1.0
151+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
152152
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
153153
with:
154154
build_type: pull-request
@@ -157,21 +157,21 @@ jobs:
157157
conda-cpp-checks:
158158
needs: conda-cpp-build
159159
secrets: inherit
160-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@cuda-13.1.0
160+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main
161161
with:
162162
build_type: pull-request
163163
symbol_exclusions: (void (thrust::|cub::))
164164
conda-python-build:
165165
needs: conda-cpp-build
166166
secrets: inherit
167-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.1.0
167+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
168168
with:
169169
build_type: pull-request
170170
script: ci/build_python.sh
171171
conda-python-tests:
172172
needs: [conda-python-build, changed-files]
173173
secrets: inherit
174-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.1.0
174+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
175175
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
176176
with:
177177
build_type: pull-request
@@ -180,7 +180,7 @@ jobs:
180180
rocky8-clib-standalone-build:
181181
needs: [checks]
182182
secrets: inherit
183-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
183+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
184184
strategy:
185185
fail-fast: false
186186
matrix:
@@ -205,7 +205,7 @@ jobs:
205205
rocky8-clib-tests:
206206
needs: [rocky8-clib-standalone-build, changed-files]
207207
secrets: inherit
208-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
208+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
209209
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
210210
strategy:
211211
fail-fast: false
@@ -227,7 +227,7 @@ jobs:
227227
conda-java-build-and-tests:
228228
needs: [conda-cpp-build, changed-files]
229229
secrets: inherit
230-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
230+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
231231
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_java || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
232232
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
233233
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
@@ -249,7 +249,7 @@ jobs:
249249
rust-build:
250250
needs: [conda-cpp-build, changed-files]
251251
secrets: inherit
252-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
252+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
253253
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_rust || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
254254
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
255255
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
@@ -269,7 +269,7 @@ jobs:
269269
go-build:
270270
needs: [conda-cpp-build, changed-files]
271271
secrets: inherit
272-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
272+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
273273
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_go || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
274274
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
275275
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
@@ -288,7 +288,7 @@ jobs:
288288
docs-build:
289289
needs: conda-python-build
290290
secrets: inherit
291-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
291+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
292292
with:
293293
build_type: pull-request
294294
node_type: "gpu-l4-latest-1"
@@ -298,7 +298,7 @@ jobs:
298298
wheel-build-libcuvs:
299299
needs: checks
300300
secrets: inherit
301-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.1.0
301+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
302302
with:
303303
build_type: pull-request
304304
node_type: cpu16
@@ -311,7 +311,7 @@ jobs:
311311
wheel-build-cuvs:
312312
needs: wheel-build-libcuvs
313313
secrets: inherit
314-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.1.0
314+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
315315
with:
316316
build_type: pull-request
317317
node_type: cpu8
@@ -322,7 +322,7 @@ jobs:
322322
wheel-tests-cuvs:
323323
needs: [wheel-build-cuvs, changed-files]
324324
secrets: inherit
325-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.1.0
325+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
326326
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
327327
with:
328328
build_type: pull-request
@@ -331,7 +331,7 @@ jobs:
331331
devcontainer:
332332
secrets: inherit
333333
needs: telemetry-setup
334-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@cuda-13.1.0
334+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@main
335335
with:
336336
arch: '["amd64", "arm64"]'
337337
cuda: '["13.1"]'

.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@cuda-13.1.0
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
symbol_exclusions: (void (thrust::|cub::))
3535
conda-cpp-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-13.1.0
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
3838
with:
3939
build_type: ${{ inputs.build_type }}
4040
branch: ${{ inputs.branch }}
@@ -44,7 +44,7 @@ jobs:
4444
sccache-dist-token-secret-name: GIST_REPO_READ_ORG_GITHUB_TOKEN
4545
conda-python-tests:
4646
secrets: inherit
47-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.1.0
47+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
4848
with:
4949
build_type: ${{ inputs.build_type }}
5050
branch: ${{ inputs.branch }}
@@ -54,7 +54,7 @@ jobs:
5454
sccache-dist-token-secret-name: GIST_REPO_READ_ORG_GITHUB_TOKEN
5555
conda-java-tests:
5656
secrets: inherit
57-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
57+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
5858
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
5959
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
6060
strategy:
@@ -75,7 +75,7 @@ jobs:
7575
sccache-dist-token-secret-name: GIST_REPO_READ_ORG_GITHUB_TOKEN
7676
wheel-tests-cuvs:
7777
secrets: inherit
78-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.1.0
78+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
7979
with:
8080
build_type: ${{ inputs.build_type }}
8181
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@cuda-13.1.0
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

0 commit comments

Comments
 (0)