Skip to content

Commit 57a6b59

Browse files
Use workflow branch 24.08 again (#247)
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: #247
1 parent 1abbd5b commit 57a6b59

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

.github/workflows/build.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
conda-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: conda-cpp-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,15 +51,15 @@ jobs:
5151
upload-conda:
5252
needs: [conda-cpp-build]
5353
secrets: inherit
54-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda-12.5.1
54+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.08
5555
with:
5656
build_type: ${{ inputs.build_type || 'branch' }}
5757
branch: ${{ inputs.branch }}
5858
date: ${{ inputs.date }}
5959
sha: ${{ inputs.sha }}
6060
wheel-build-ucxx:
6161
secrets: inherit
62-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
62+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
6363
with:
6464
build_type: ${{ inputs.build_type || 'branch' }}
6565
branch: ${{ inputs.branch }}
@@ -69,7 +69,7 @@ jobs:
6969
wheel-publish-ucxx:
7070
needs: wheel-build-ucxx
7171
secrets: inherit
72-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-12.5.1
72+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.08
7373
with:
7474
build_type: ${{ inputs.build_type || 'branch' }}
7575
branch: ${{ inputs.branch }}
@@ -78,7 +78,7 @@ jobs:
7878
package-name: ucxx
7979
wheel-build-distributed-ucxx:
8080
secrets: inherit
81-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
81+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
8282
with:
8383
build_type: ${{ inputs.build_type || 'branch' }}
8484
branch: ${{ inputs.branch }}
@@ -88,7 +88,7 @@ jobs:
8888
wheel-publish-distributed-ucxx:
8989
needs: [wheel-build-ucxx, wheel-build-distributed-ucxx]
9090
secrets: inherit
91-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-12.5.1
91+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.08
9292
with:
9393
build_type: ${{ inputs.build_type || 'branch' }}
9494
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ jobs:
2323
- wheel-build-distributed-ucxx
2424
- wheel-tests-distributed-ucxx
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
with:
3131
enable_check_generated_files: false
3232
conda-cpp-build:
3333
needs: checks
3434
secrets: inherit
35-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-12.5.1
35+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.08
3636
with:
3737
build_type: pull-request
3838
docs-build:
3939
needs: conda-cpp-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
build_type: pull-request
4444
node_type: "gpu-v100-latest-1"
@@ -48,51 +48,51 @@ jobs:
4848
conda-cpp-tests:
4949
needs: conda-cpp-build
5050
secrets: inherit
51-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-12.5.1
51+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.08
5252
with:
5353
build_type: pull-request
5454
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
5555
conda-python-tests:
5656
needs: conda-cpp-build
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
58+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
5959
with:
6060
build_type: pull-request
6161
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
6262
conda-python-distributed-tests:
6363
needs: conda-cpp-build
6464
secrets: inherit
65-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
65+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
6666
with:
6767
build_type: pull-request
6868
script: "ci/test_python_distributed.sh"
6969
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
7070
wheel-build-ucxx:
7171
needs: checks
7272
secrets: inherit
73-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
73+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
7474
with:
7575
build_type: pull-request
7676
script: ci/build_wheel_ucxx.sh
7777
wheel-tests-ucxx:
7878
needs: wheel-build-ucxx
7979
secrets: inherit
80-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
80+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
8181
with:
8282
build_type: pull-request
8383
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
8484
script: ci/test_wheel_ucxx.sh
8585
wheel-build-distributed-ucxx:
8686
needs: checks
8787
secrets: inherit
88-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-12.5.1
88+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.08
8989
with:
9090
build_type: pull-request
9191
script: ci/build_wheel_distributed_ucxx.sh
9292
wheel-tests-distributed-ucxx:
9393
needs: [wheel-build-ucxx, wheel-build-distributed-ucxx]
9494
secrets: inherit
95-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
95+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
9696
with:
9797
build_type: pull-request
9898
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"

.github/workflows/test.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
conda-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 }}
@@ -25,7 +25,7 @@ jobs:
2525
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
2626
conda-python-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-12.5.1
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.08
2929
with:
3030
build_type: nightly
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
3535
conda-python-distributed-tests:
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
script: "ci/test_python_distributed.sh"
@@ -44,7 +44,7 @@ jobs:
4444
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
4545
wheel-tests-ucxx:
4646
secrets: inherit
47-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
47+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
4848
with:
4949
build_type: nightly
5050
branch: ${{ inputs.branch }}
@@ -54,7 +54,7 @@ jobs:
5454
script: ci/test_wheel_ucxx.sh
5555
wheel-tests-distributed-ucxx:
5656
secrets: inherit
57-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-12.5.1
57+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.08
5858
with:
5959
build_type: nightly
6060
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)