Skip to content

Commit 5b57e49

Browse files
authored
Use shared-workflows branch-25.04 (#623)
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: #623
1 parent 6b1a71f commit 5b57e49

4 files changed

Lines changed: 25 additions & 25 deletions

File tree

.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 }}
@@ -37,7 +37,7 @@ jobs:
3737
python-build:
3838
needs: [cpp-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646
upload-conda:
4747
needs: [cpp-build, python-build]
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@nvks-runners
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.04
5050
with:
5151
build_type: ${{ inputs.build_type || 'branch' }}
5252
branch: ${{ inputs.branch }}
@@ -56,7 +56,7 @@ jobs:
5656
if: github.ref_type == 'branch'
5757
needs: python-build
5858
secrets: inherit
59-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
59+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
6060
with:
6161
arch: "amd64"
6262
branch: ${{ inputs.branch }}
@@ -68,7 +68,7 @@ jobs:
6868
sha: ${{ inputs.sha }}
6969
wheel-build-cpp:
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
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
7474
build_type: ${{ inputs.build_type || 'branch' }}
@@ -79,7 +79,7 @@ jobs:
7979
wheel-build-python:
8080
needs: wheel-build-cpp
8181
secrets: inherit
82-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
82+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
8383
with:
8484
build_type: ${{ inputs.build_type || 'branch' }}
8585
branch: ${{ inputs.branch }}
@@ -89,7 +89,7 @@ jobs:
8989
wheel-publish-cpp:
9090
needs: wheel-build-cpp
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@nvks-runners
92+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
9393
with:
9494
build_type: ${{ inputs.build_type || 'branch' }}
9595
branch: ${{ inputs.branch }}
@@ -100,7 +100,7 @@ jobs:
100100
wheel-publish-python:
101101
needs: wheel-build-python
102102
secrets: inherit
103-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@nvks-runners
103+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
104104
with:
105105
build_type: ${{ inputs.build_type || 'branch' }}
106106
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- wheel-python-build
2727
- wheel-python-tests
2828
secrets: inherit
29-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@nvks-runners
29+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.04
3030
if: always()
3131
with:
3232
needs: ${{ toJSON(needs) }}
@@ -44,7 +44,7 @@ jobs:
4444
repo: kvikio
4545
changed-files:
4646
secrets: inherit
47-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@nvks-runners
47+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.04
4848
with:
4949
files_yaml: |
5050
test_cpp:
@@ -72,24 +72,24 @@ jobs:
7272
- '!notebooks/**'
7373
checks:
7474
secrets: inherit
75-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners
75+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.04
7676
conda-cpp-build:
7777
needs: checks
7878
secrets: inherit
79-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@nvks-runners
79+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.04
8080
with:
8181
build_type: pull-request
8282
conda-cpp-tests:
8383
needs: [conda-cpp-build, changed-files]
8484
secrets: inherit
85-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
85+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04
8686
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
8787
with:
8888
build_type: pull-request
8989
conda-java-tests:
9090
needs: conda-cpp-build
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
92+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
9393
with:
9494
build_type: pull-request
9595
node_type: "gpu-l4-latest-1"
@@ -99,20 +99,20 @@ jobs:
9999
conda-python-build:
100100
needs: conda-cpp-build
101101
secrets: inherit
102-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
102+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
103103
with:
104104
build_type: pull-request
105105
conda-python-tests:
106106
needs: [conda-python-build, changed-files]
107107
secrets: inherit
108-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
108+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
109109
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
110110
with:
111111
build_type: pull-request
112112
docs-build:
113113
needs: conda-python-build
114114
secrets: inherit
115-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
115+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
116116
with:
117117
build_type: pull-request
118118
node_type: "gpu-l4-latest-1"
@@ -121,7 +121,7 @@ jobs:
121121
run_script: "ci/build_docs.sh"
122122
devcontainer:
123123
secrets: inherit
124-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@nvks-runners
124+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.04
125125
with:
126126
arch: '["amd64"]'
127127
cuda: '["12.8"]'
@@ -132,22 +132,22 @@ jobs:
132132
sccache -s;
133133
wheel-cpp-build:
134134
secrets: inherit
135-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
135+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
136136
with:
137137
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
138138
build_type: pull-request
139139
script: ci/build_wheel_cpp.sh
140140
wheel-python-build:
141141
needs: wheel-cpp-build
142142
secrets: inherit
143-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
143+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
144144
with:
145145
build_type: pull-request
146146
script: ci/build_wheel_python.sh
147147
wheel-python-tests:
148148
needs: [wheel-python-build, changed-files]
149149
secrets: inherit
150-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
150+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
151151
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
152152
with:
153153
build_type: pull-request

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ on:
1919
jobs:
2020
cpp-tests:
2121
secrets: inherit
22-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
22+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04
2323
with:
2424
build_type: ${{ inputs.build_type }}
2525
branch: ${{ inputs.branch }}
2626
date: ${{ inputs.date }}
2727
sha: ${{ inputs.sha }}
2828
python-tests:
2929
secrets: inherit
30-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
30+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
3131
with:
3232
build_type: ${{ inputs.build_type }}
3333
branch: ${{ inputs.branch }}
3434
date: ${{ inputs.date }}
3535
sha: ${{ inputs.sha }}
3636
conda-java-tests:
3737
secrets: inherit
38-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
38+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
3939
with:
4040
build_type: ${{ inputs.build_type }}
4141
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)