Skip to content

Commit e7bc8b2

Browse files
Use workflow branch 24.08 again (#407)
After updating everything to CUDA 12.5.1, use `[email protected]` again. Contributes to rapidsai/build-planning#73 Authors: - Kyle Edwards (https://github.com/KyleFromNVIDIA) Approvers: - James Lamb (https://github.com/jameslamb) URL: #407
1 parent ab3778c commit e7bc8b2

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 8 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@cuda-12.5.1
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.08
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,7 +37,7 @@ jobs:
3737
python-build:
3838
needs: [cpp-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-12.5.1
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.08
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646
upload-conda:
4747
needs: [cpp-build, python-build]
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda-12.5.1
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.08
5050
with:
5151
build_type: ${{ inputs.build_type || 'branch' }}
5252
branch: ${{ inputs.branch }}
@@ -56,7 +56,7 @@ jobs:
5656
if: github.ref_type == 'branch'
5757
needs: python-build
5858
secrets: inherit
59-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-12.5.1
59+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
6060
with:
6161
arch: "amd64"
6262
branch: ${{ inputs.branch }}
@@ -68,7 +68,7 @@ jobs:
6868
sha: ${{ inputs.sha }}
6969
wheel-build-cpp:
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
71+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
7272
with:
7373
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
7474
build_type: ${{ inputs.build_type || 'branch' }}
@@ -79,7 +79,7 @@ jobs:
7979
wheel-build-python:
8080
needs: wheel-build-cpp
8181
secrets: inherit
82-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
82+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
8383
with:
8484
build_type: ${{ inputs.build_type || 'branch' }}
8585
branch: ${{ inputs.branch }}
@@ -89,7 +89,7 @@ jobs:
8989
wheel-publish-cpp:
9090
needs: wheel-build-cpp
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-12.5.1
92+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.08
9393
with:
9494
build_type: ${{ inputs.build_type || 'branch' }}
9595
branch: ${{ inputs.branch }}
@@ -100,7 +100,7 @@ jobs:
100100
wheel-publish-python:
101101
needs: wheel-build-python
102102
secrets: inherit
103-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-12.5.1
103+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.08
104104
with:
105105
build_type: ${{ inputs.build_type || 'branch' }}
106106
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,38 +23,38 @@ jobs:
2323
- wheel-python-build
2424
- wheel-python-tests
2525
secrets: inherit
26-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-12.5.1
26+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.08
2727
checks:
2828
secrets: inherit
29-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-12.5.1
29+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.08
3030
conda-cpp-build:
3131
needs: checks
3232
secrets: inherit
33-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-12.5.1
33+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.08
3434
with:
3535
build_type: pull-request
3636
conda-cpp-tests:
3737
needs: conda-cpp-build
3838
secrets: inherit
39-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-12.5.1
39+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.08
4040
with:
4141
build_type: pull-request
4242
conda-python-build:
4343
needs: conda-cpp-build
4444
secrets: inherit
45-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-12.5.1
45+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.08
4646
with:
4747
build_type: pull-request
4848
conda-python-tests:
4949
needs: conda-python-build
5050
secrets: inherit
51-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
51+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
5252
with:
5353
build_type: pull-request
5454
docs-build:
5555
needs: conda-python-build
5656
secrets: inherit
57-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-12.5.1
57+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
5858
with:
5959
build_type: pull-request
6060
node_type: "gpu-v100-latest-1"
@@ -63,7 +63,7 @@ jobs:
6363
run_script: "ci/build_docs.sh"
6464
devcontainer:
6565
secrets: inherit
66-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@cuda-12.5.1
66+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-24.08
6767
with:
6868
arch: '["amd64"]'
6969
cuda: '["12.5"]'
@@ -73,22 +73,22 @@ jobs:
7373
sccache -s;
7474
wheel-cpp-build:
7575
secrets: inherit
76-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
76+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
7777
with:
7878
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
7979
build_type: pull-request
8080
script: ci/build_wheel_cpp.sh
8181
wheel-python-build:
8282
needs: wheel-cpp-build
8383
secrets: inherit
84-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
84+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
8585
with:
8686
build_type: pull-request
8787
script: ci/build_wheel_python.sh
8888
wheel-python-tests:
8989
needs: wheel-python-build
9090
secrets: inherit
91-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
91+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
9292
with:
9393
build_type: pull-request
9494
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
cpp-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-12.5.1
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.08
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
python-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
27+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
2828
with:
2929
build_type: nightly
3030
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)