Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 41728c7

Browse files
authored
target branch-24.04 for GitHub Actions workflows (#135)
Follow-up to #116 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: #135
1 parent 3abc3a5 commit 41728c7

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/build.yaml

+6-6
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
python-build:
3939
needs: [cpp-build]
4040
secrets: inherit
41-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@test-cuda-12.2
41+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.04
4242
with:
4343
build_type: ${{ inputs.build_type || 'branch' }}
4444
branch: ${{ inputs.branch }}
@@ -49,7 +49,7 @@ jobs:
4949
if: github.ref_type == 'branch'
5050
needs: [python-build]
5151
secrets: inherit
52-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
52+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
5353
with:
5454
arch: "amd64"
5555
branch: ${{ inputs.branch }}
@@ -62,15 +62,15 @@ jobs:
6262
upload-conda:
6363
needs: [cpp-build, python-build]
6464
secrets: inherit
65-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@test-cuda-12.2
65+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.04
6666
with:
6767
build_type: ${{ inputs.build_type || 'branch' }}
6868
branch: ${{ inputs.branch }}
6969
date: ${{ inputs.date }}
7070
sha: ${{ inputs.sha }}
7171
wheel-build-pylibwholegraph:
7272
secrets: inherit
73-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@test-cuda-12.2
73+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.04
7474
with:
7575
build_type: ${{ inputs.build_type || 'branch' }}
7676
branch: ${{ inputs.branch }}
@@ -80,7 +80,7 @@ jobs:
8080
wheel-publish-pylibwholegraph:
8181
needs: wheel-build-pylibwholegraph
8282
secrets: inherit
83-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@test-cuda-12.2
83+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.04
8484
with:
8585
build_type: ${{ inputs.build_type || 'branch' }}
8686
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,41 +21,41 @@ jobs:
2121
- wheel-build-pylibwholegraph
2222
- wheel-test-pylibwholegraph
2323
secrets: inherit
24-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@test-cuda-12.2
24+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.04
2525
checks:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@test-cuda-12.2
27+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.04
2828
with:
2929
enable_check_generated_files: false
3030
conda-cpp-build:
3131
needs: checks
3232
secrets: inherit
33-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@test-cuda-12.2
33+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.04
3434
with:
3535
build_type: pull-request
3636
node_type: cpu16
3737
conda-cpp-tests:
3838
needs: conda-cpp-build
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@test-cuda-12.2
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.04
4141
with:
4242
build_type: pull-request
4343
conda-python-build:
4444
needs: conda-cpp-build
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@test-cuda-12.2
46+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.04
4747
with:
4848
build_type: pull-request
4949
conda-python-tests:
5050
needs: conda-python-build
5151
secrets: inherit
52-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@test-cuda-12.2
52+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04
5353
with:
5454
build_type: pull-request
5555
docs-build:
5656
needs: conda-python-build
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@test-cuda-12.2
58+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04
5959
with:
6060
build_type: pull-request
6161
arch: "amd64"
@@ -64,14 +64,14 @@ jobs:
6464
wheel-build-pylibwholegraph:
6565
needs: checks
6666
secrets: inherit
67-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@test-cuda-12.2
67+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.04
6868
with:
6969
build_type: pull-request
7070
script: ci/build_wheel.sh
7171
wheel-test-pylibwholegraph:
7272
needs: wheel-build-pylibwholegraph
7373
secrets: inherit
74-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@test-cuda-12.2
74+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.04
7575
with:
7676
build_type: pull-request
7777
script: ci/test_wheel.sh

.github/workflows/test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ on:
1616
jobs:
1717
conda-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 }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
conda-pytorch-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@test-cuda-12.2
27+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04
2828
with:
2929
build_type: nightly
3030
branch: ${{ inputs.branch }}
3131
date: ${{ inputs.date }}
3232
sha: ${{ inputs.sha }}
3333
wheel-tests-pylibwholegraph:
3434
secrets: inherit
35-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@test-cuda-12.2
35+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.04
3636
with:
3737
build_type: nightly
3838
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)