Skip to content

Commit 6e5670b

Browse files
Use workflow branch 24.08 again (#5970)
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) - https://github.com/jakirkham URL: #5970
1 parent 99b20f6 commit 6e5670b

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
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-cuml:
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 }}
@@ -84,7 +84,7 @@ jobs:
8484
wheel-publish-cuml:
8585
needs: wheel-build-cuml
8686
secrets: inherit
87-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-12.5.1
87+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.08
8888
with:
8989
build_type: ${{ inputs.build_type || 'branch' }}
9090
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+15-15
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
- wheel-tests-cuml
2727
- devcontainer
2828
secrets: inherit
29-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-12.5.1
29+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.08
3030
checks:
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-12.5.1
32+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.08
3333
with:
3434
enable_check_generated_files: false
3535
ignored_pr_jobs: >-
3636
optional-job-conda-python-tests-cudf-pandas-integration
3737
clang-tidy:
3838
needs: checks
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-12.5.1
40+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
4141
with:
4242
build_type: pull-request
4343
node_type: "cpu8"
@@ -47,55 +47,55 @@ jobs:
4747
conda-cpp-build:
4848
needs: checks
4949
secrets: inherit
50-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-12.5.1
50+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.08
5151
with:
5252
build_type: pull-request
5353
conda-cpp-tests:
5454
needs: conda-cpp-build
5555
secrets: inherit
56-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-12.5.1
56+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.08
5757
with:
5858
build_type: pull-request
5959
conda-cpp-checks:
6060
needs: conda-cpp-build
6161
secrets: inherit
62-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@cuda-12.5.1
62+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-24.08
6363
with:
6464
build_type: pull-request
6565
enable_check_symbols: true
6666
symbol_exclusions: raft_cutlass
6767
conda-python-build:
6868
needs: conda-cpp-build
6969
secrets: inherit
70-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-12.5.1
70+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.08
7171
with:
7272
build_type: pull-request
7373
conda-python-tests-singlegpu:
7474
needs: conda-python-build
7575
secrets: inherit
76-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
76+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
7777
with:
7878
build_type: pull-request
7979
script: "ci/test_python_singlegpu.sh"
8080
optional-job-conda-python-tests-cudf-pandas-integration:
8181
needs: conda-python-build
8282
secrets: inherit
83-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
83+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
8484
with:
8585
matrix_filter: map(select(.ARCH == "amd64"))
8686
build_type: pull-request
8787
script: "ci/test_python_integration.sh"
8888
conda-python-tests-dask:
8989
needs: conda-python-build
9090
secrets: inherit
91-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
91+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
9292
with:
9393
build_type: pull-request
9494
script: "ci/test_python_dask.sh"
9595
conda-notebook-tests:
9696
needs: conda-python-build
9797
secrets: inherit
98-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-12.5.1
98+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
9999
with:
100100
build_type: pull-request
101101
node_type: "gpu-v100-latest-1"
@@ -105,7 +105,7 @@ jobs:
105105
docs-build:
106106
needs: conda-python-build
107107
secrets: inherit
108-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-12.5.1
108+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.08
109109
with:
110110
build_type: pull-request
111111
node_type: "gpu-v100-latest-1"
@@ -115,7 +115,7 @@ jobs:
115115
wheel-build-cuml:
116116
needs: checks
117117
secrets: inherit
118-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
118+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
119119
with:
120120
build_type: pull-request
121121
script: ci/build_wheel.sh
@@ -125,13 +125,13 @@ jobs:
125125
wheel-tests-cuml:
126126
needs: wheel-build-cuml
127127
secrets: inherit
128-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
128+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
129129
with:
130130
build_type: pull-request
131131
script: ci/test_wheel.sh
132132
devcontainer:
133133
secrets: inherit
134-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@cuda-12.5.1
134+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-24.08
135135
with:
136136
arch: '["amd64"]'
137137
cuda: '["12.5"]'

.github/workflows/test.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
conda-cpp-checks:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@cuda-12.5.1
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-24.08
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
@@ -26,15 +26,15 @@ jobs:
2626
symbol_exclusions: raft_cutlass
2727
conda-cpp-tests:
2828
secrets: inherit
29-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-12.5.1
29+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.08
3030
with:
3131
build_type: nightly
3232
branch: ${{ inputs.branch }}
3333
date: ${{ inputs.date }}
3434
sha: ${{ inputs.sha }}
3535
conda-python-tests-singlegpu:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
3838
with:
3939
build_type: nightly
4040
branch: ${{ inputs.branch }}
@@ -43,7 +43,7 @@ jobs:
4343
script: "ci/test_python_singlegpu.sh"
4444
conda-python-tests-dask:
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
46+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
4747
with:
4848
build_type: nightly
4949
branch: ${{ inputs.branch }}
@@ -52,7 +52,7 @@ jobs:
5252
script: "ci/test_python_dask.sh"
5353
wheel-tests-cuml:
5454
secrets: inherit
55-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
55+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
5656
with:
5757
build_type: nightly
5858
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)