Skip to content

Commit 193d72f

Browse files
authored
target branch-24.04 for GitHub Actions workflows (#1314)
Follow-up to #1302 For all GitHub Actions configs, replaces uses of the `test-cuda-12.2` branch on `shared-workflows` with `branch-24.04`, now that rapidsai/shared-workflows#166 has been merged. ### Notes for Reviewers This is part of ongoing work to build and test packages against CUDA 12.2 across all of RAPIDS. For more details see: * rapidsai/build-planning#7 *(created with `rapids-reviser`)* Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: #1314
1 parent 21376a0 commit 193d72f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.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
conda-python-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@test-cuda-12.2
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.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: [conda-python-build]
4040
secrets: inherit
41-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
41+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
4242
with:
4343
arch: "amd64"
4444
branch: ${{ inputs.branch }}
@@ -51,15 +51,15 @@ jobs:
5151
upload-conda:
5252
needs: [conda-python-build]
5353
secrets: inherit
54-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@test-cuda-12.2
54+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.04
5555
with:
5656
build_type: ${{ inputs.build_type || 'branch' }}
5757
branch: ${{ inputs.branch }}
5858
date: ${{ inputs.date }}
5959
sha: ${{ inputs.sha }}
6060
wheel-build:
6161
secrets: inherit
62-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@test-cuda-12.2
62+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.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@test-cuda-12.2
74+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.04
7575
with:
7676
build_type: ${{ inputs.build_type || 'branch' }}
7777
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@ jobs:
1818
- docs-build
1919
- wheel-build
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@test-cuda-12.2
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.04
2222
checks:
2323
secrets: inherit
24-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@test-cuda-12.2
24+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.04
2525
conda-python-build:
2626
needs: checks
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@test-cuda-12.2
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.04
2929
with:
3030
build_type: pull-request
3131
conda-python-tests:
3232
needs: conda-python-build
3333
secrets: inherit
34-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@test-cuda-12.2
34+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04
3535
with:
3636
build_type: pull-request
3737
docs-build:
3838
needs: conda-python-build
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
40+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
4141
with:
4242
build_type: pull-request
4343
node_type: "gpu-v100-latest-1"
@@ -46,7 +46,7 @@ jobs:
4646
run_script: "ci/build_docs.sh"
4747
wheel-build:
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@test-cuda-12.2
49+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.04
5050
with:
5151
build_type: pull-request
5252
# Package is pure Python and only ever requires one build.

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
conda-python-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@test-cuda-12.2
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)