Skip to content

Commit 45a4446

Browse files
authored
Migrate to NVKS for amd64 CI runners (#1803)
This migrates amd64 CI jobs (PRs and nightlies) to use L4 GPUs from the NVKS cluster. xref: rapidsai/build-infra#184 Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Gil Forsyth (https://github.com/gforsyth) URL: #1803
1 parent 58fc846 commit 45a4446

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 9 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@branch-25.02
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@nvks-runners
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@branch-25.02
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
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@branch-25.02
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@nvks-runners
5050
with:
5151
build_type: ${{ inputs.build_type || 'branch' }}
5252
branch: ${{ inputs.branch }}
@@ -56,19 +56,19 @@ jobs:
5656
if: github.ref_type == 'branch'
5757
needs: python-build
5858
secrets: inherit
59-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02
59+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
6060
with:
6161
build_type: ${{ inputs.build_type || 'branch' }}
6262
branch: ${{ inputs.branch }}
6363
sha: ${{ inputs.sha }}
6464
date: ${{ inputs.date }}
65-
node_type: "gpu-v100-latest-1"
65+
node_type: "gpu-l4-latest-1"
6666
arch: "amd64"
6767
container_image: "rapidsai/ci-conda:latest"
6868
run_script: "ci/build_docs.sh"
6969
wheel-build-cpp:
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
71+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
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@branch-25.02
82+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
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@branch-25.02
92+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@nvks-runners
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@branch-25.02
103+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@nvks-runners
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
- devcontainer
2727
- telemetry-setup
2828
secrets: inherit
29-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
29+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@nvks-runners
3030
if: always()
3131
with:
3232
needs: ${{ toJSON(needs) }}
@@ -57,7 +57,7 @@ jobs:
5757
needs:
5858
- telemetry-setup
5959
secrets: inherit
60-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.02
60+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@nvks-runners
6161
with:
6262
files_yaml: |
6363
test_cpp:
@@ -79,65 +79,65 @@ jobs:
7979
secrets: inherit
8080
needs:
8181
- telemetry-setup
82-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
82+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners
8383
with:
8484
enable_check_generated_files: false
8585
ignored_pr_jobs: telemetry-summarize
8686
conda-cpp-build:
8787
needs: checks
8888
secrets: inherit
89-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.02
89+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@nvks-runners
9090
with:
9191
build_type: pull-request
9292
conda-cpp-tests:
9393
needs: [conda-cpp-build, changed-files]
9494
secrets: inherit
95-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02
95+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
9696
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
9797
with:
9898
build_type: pull-request
9999
conda-python-build:
100100
needs: conda-cpp-build
101101
secrets: inherit
102-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
102+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
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@branch-25.02
108+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
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@branch-25.02
115+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
116116
with:
117117
build_type: pull-request
118-
node_type: "gpu-v100-latest-1"
118+
node_type: "gpu-l4-latest-1"
119119
arch: "amd64"
120120
container_image: "rapidsai/ci-conda:latest"
121121
run_script: "ci/build_docs.sh"
122122
wheel-build-cpp:
123123
needs: checks
124124
secrets: inherit
125-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
125+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
126126
with:
127127
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
128128
build_type: pull-request
129129
script: ci/build_wheel_cpp.sh
130130
wheel-build-python:
131131
needs: wheel-build-cpp
132132
secrets: inherit
133-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
133+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
134134
with:
135135
build_type: pull-request
136136
script: ci/build_wheel_python.sh
137137
wheel-tests:
138138
needs: [wheel-build-python, changed-files]
139139
secrets: inherit
140-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
140+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
141141
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
142142
with:
143143
build_type: pull-request
@@ -146,7 +146,7 @@ jobs:
146146
secrets: inherit
147147
needs:
148148
- telemetry-setup
149-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.02
149+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@nvks-runners
150150
with:
151151
arch: '["amd64"]'
152152
cuda: '["12.8"]'

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ on:
1616
jobs:
1717
cpp-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@nvks-runners
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
python-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
27+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
2828
with:
2929
build_type: nightly
3030
branch: ${{ inputs.branch }}
3131
date: ${{ inputs.date }}
3232
sha: ${{ inputs.sha }}
3333
wheel-tests:
3434
secrets: inherit
35-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
35+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
3636
with:
3737
build_type: nightly
3838
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.02
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@nvks-runners
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

0 commit comments

Comments
 (0)