Skip to content

Commit 7a3a1cd

Browse files
authored
target branch-24.04 for GitHub Actions workflows (#541)
Follow-up to #521 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: #541
1 parent fc61a9e commit 7a3a1cd

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 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@test-cuda-12.2
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.04
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,7 +37,7 @@ jobs:
3737
upload-conda:
3838
needs: [cpp-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@test-cuda-12.2
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.04
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646
docs-build:
4747
if: github.ref_type == 'branch'
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
49+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
5050
with:
5151
arch: "amd64"
5252
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,26 @@ jobs:
1717
- conda-cpp-tests
1818
- docs-build
1919
secrets: inherit
20-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@test-cuda-12.2
20+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.04
2121
checks:
2222
secrets: inherit
23-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@test-cuda-12.2
23+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.04
2424
conda-cpp-build:
2525
needs: checks
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@test-cuda-12.2
27+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.04
2828
with:
2929
build_type: pull-request
3030
conda-cpp-tests:
3131
needs: conda-cpp-build
3232
secrets: inherit
33-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@test-cuda-12.2
33+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.04
3434
with:
3535
build_type: pull-request
3636
docs-build:
3737
needs: conda-cpp-build
3838
secrets: inherit
39-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
39+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
4040
with:
4141
build_type: pull-request
4242
node_type: "cpu4"

.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
cpp-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@test-cuda-12.2
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.04
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)