Skip to content

Commit 0e75c76

Browse files
Use workflow branch 24.08 again (#749)
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: #749
1 parent 7bbfe93 commit 0e75c76

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
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@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 }}
@@ -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@cuda-12.5.1
41+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
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@cuda-12.5.1
54+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.08
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@cuda-12.5.1
63+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.08
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@cuda-12.5.1
71+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
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@cuda-12.5.1
81+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.08
8282
with:
8383
build_type: ${{ inputs.build_type || 'branch' }}
8484
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+8-8
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@cuda-12.5.1
23+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.08
2424
checks:
2525
secrets: inherit
26-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-12.5.1
26+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.08
2727
conda-cpp-build:
2828
needs: checks
2929
secrets: inherit
30-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-12.5.1
30+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.08
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@cuda-12.5.1
36+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.08
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@cuda-12.5.1
42+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
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@cuda-12.5.1
48+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
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@cuda-12.5.1
58+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
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@cuda-12.5.1
65+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
6666
with:
6767
build_type: pull-request
6868
script: ci/test_wheel.sh

.github/workflows/test.yaml

+2-2
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@cuda-12.5.1
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
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@cuda-12.5.1
27+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
2828
with:
2929
build_type: nightly
3030
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)