Skip to content

Commit e5d1eaf

Browse files
authored
target branch-24.04 for GitHub Actions workflows (#702)
Follow-up to #672 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: #702
1 parent d7721f8 commit e5d1eaf

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 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 }}
@@ -38,7 +38,7 @@ jobs:
3838
if: github.ref_type == 'branch'
3939
needs: [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,7 +51,7 @@ jobs:
5151
python-build:
5252
needs: [cpp-build]
5353
secrets: inherit
54-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@test-cuda-12.2
54+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.04
5555
with:
5656
build_type: ${{ inputs.build_type || 'branch' }}
5757
branch: ${{ inputs.branch }}
@@ -60,15 +60,15 @@ jobs:
6060
upload-conda:
6161
needs: [cpp-build, python-build]
6262
secrets: inherit
63-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@test-cuda-12.2
63+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.04
6464
with:
6565
build_type: ${{ inputs.build_type || 'branch' }}
6666
branch: ${{ inputs.branch }}
6767
date: ${{ inputs.date }}
6868
sha: ${{ inputs.sha }}
6969
wheel-build:
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@test-cuda-12.2
71+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.04
7272
with:
7373
build_type: ${{ inputs.build_type || 'branch' }}
7474
branch: ${{ inputs.branch }}
@@ -78,7 +78,7 @@ jobs:
7878
wheel-publish:
7979
needs: wheel-build
8080
secrets: inherit
81-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@test-cuda-12.2
81+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.04
8282
with:
8383
build_type: ${{ inputs.build_type || 'branch' }}
8484
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,32 @@ jobs:
2020
- wheel-build
2121
- wheel-tests
2222
secrets: inherit
23-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@test-cuda-12.2
23+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.04
2424
checks:
2525
secrets: inherit
26-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@test-cuda-12.2
26+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.04
2727
conda-cpp-build:
2828
needs: checks
2929
secrets: inherit
30-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@test-cuda-12.2
30+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.04
3131
with:
3232
build_type: pull-request
3333
conda-python-build:
3434
needs: conda-cpp-build
3535
secrets: inherit
36-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@test-cuda-12.2
36+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.04
3737
with:
3838
build_type: pull-request
3939
conda-python-tests:
4040
needs: conda-python-build
4141
secrets: inherit
42-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@test-cuda-12.2
42+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04
4343
with:
4444
build_type: pull-request
4545
docs-build:
4646
needs: conda-python-build
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
48+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
4949
with:
5050
build_type: pull-request
5151
node_type: "gpu-v100-latest-1"
@@ -55,14 +55,14 @@ jobs:
5555
wheel-build:
5656
needs: checks
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@test-cuda-12.2
58+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.04
5959
with:
6060
build_type: pull-request
6161
script: ci/build_wheel.sh
6262
wheel-tests:
6363
needs: wheel-build
6464
secrets: inherit
65-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@test-cuda-12.2
65+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.04
6666
with:
6767
build_type: pull-request
6868
script: ci/test_wheel.sh

.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@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 }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
wheel-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@test-cuda-12.2
27+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.04
2828
with:
2929
build_type: nightly
3030
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)