Skip to content

Commit 4fa6bb7

Browse files
authored
Use shared-workflows branch-25.04 (#658)
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: - Gil Forsyth (https://github.com/gforsyth) URL: #658
1 parent fcaf3aa commit 4fa6bb7

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
python-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,7 +37,7 @@ jobs:
3737
upload-conda:
3838
needs: [python-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@nvks-runners
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.04
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -47,7 +47,7 @@ jobs:
4747
if: github.ref_type == 'branch'
4848
needs: python-build
4949
secrets: inherit
50-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
50+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
5151
with:
5252
arch: "amd64"
5353
branch: ${{ inputs.branch }}
@@ -59,7 +59,7 @@ jobs:
5959
sha: ${{ inputs.sha }}
6060
wheel-build:
6161
secrets: inherit
62-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
62+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
6363
with:
6464
build_type: ${{ inputs.build_type || 'branch' }}
6565
branch: ${{ inputs.branch }}
@@ -71,7 +71,7 @@ jobs:
7171
wheel-publish:
7272
needs: wheel-build
7373
secrets: inherit
74-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@nvks-runners
74+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.04
7575
with:
7676
build_type: ${{ inputs.build_type || 'branch' }}
7777
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- wheel-tests
2323
- telemetry-setup
2424
secrets: inherit
25-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@nvks-runners
25+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.04
2626
if: always()
2727
with:
2828
needs: ${{ toJSON(needs) }}
@@ -40,7 +40,7 @@ jobs:
4040
changed-files:
4141
secrets: inherit
4242
needs: telemetry-setup
43-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@nvks-runners
43+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.04
4444
with:
4545
files_yaml: |
4646
test_notebooks:
@@ -60,27 +60,27 @@ jobs:
6060
checks:
6161
secrets: inherit
6262
needs: telemetry-setup
63-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@nvks-runners
63+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.04
6464
with:
6565
ignored_pr_jobs: telemetry-summarize
6666
conda-python-build:
6767
needs: checks
6868
secrets: inherit
69-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@nvks-runners
69+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.04
7070
with:
7171
build_type: pull-request
7272
conda-python-tests:
7373
needs: [conda-python-build, changed-files]
7474
secrets: inherit
75-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
75+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
7676
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
7777
with:
7878
build_type: pull-request
7979
run_codecov: false
8080
conda-notebook-tests:
8181
needs: [conda-python-build, changed-files]
8282
secrets: inherit
83-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
83+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
8484
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
8585
with:
8686
build_type: pull-request
@@ -91,7 +91,7 @@ jobs:
9191
docs-build:
9292
needs: conda-python-build
9393
secrets: inherit
94-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
94+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
9595
with:
9696
build_type: pull-request
9797
node_type: "gpu-l4-latest-1"
@@ -101,7 +101,7 @@ jobs:
101101
wheel-build:
102102
needs: checks
103103
secrets: inherit
104-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@nvks-runners
104+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.04
105105
with:
106106
build_type: pull-request
107107
script: ci/build_wheel.sh
@@ -110,7 +110,7 @@ jobs:
110110
wheel-tests:
111111
needs: [wheel-build, changed-files]
112112
secrets: inherit
113-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
113+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
114114
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
115115
with:
116116
build_type: pull-request

.github/workflows/test-external.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
test-external:
2525
secrets: inherit
26-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@nvks-runners
26+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.04
2727
with:
2828
build_type: branch
2929
node_type: "gpu-l4-latest-1"

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ on:
1616
jobs:
1717
conda-python-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@nvks-runners
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
wheel-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@nvks-runners
27+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04
2828
with:
2929
build_type: nightly
3030
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)