@@ -34,63 +34,68 @@ concurrency:
3434jobs :
3535 cpp-build :
3636 secrets : inherit
37- uses : rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@release/25.12
37+ uses : rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
3838 with :
3939 build_type : ${{ inputs.build_type || 'branch' }}
40+ node_type : cpu16
4041 branch : ${{ inputs.branch }}
4142 date : ${{ inputs.date }}
4243 script : ci/build_cpp.sh
4344 sha : ${{ inputs.sha }}
45+ sccache-dist-token-secret-name : GIST_REPO_READ_ORG_GITHUB_TOKEN
4446 docs-build :
4547 if : github.ref_type == 'branch'
4648 needs : [python-build]
4749 secrets : inherit
48- uses : rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/25.12
50+ uses : rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
4951 with :
5052 arch : " amd64"
5153 branch : ${{ inputs.branch }}
5254 build_type : ${{ inputs.build_type || 'branch' }}
53- container_image : " rapidsai/ci-conda:25.12 -latest"
55+ container_image : " rapidsai/ci-conda:26.02 -latest"
5456 date : ${{ inputs.date }}
5557 node_type : " gpu-l4-latest-1"
5658 script : " ci/build_docs.sh"
5759 sha : ${{ inputs.sha }}
5860 python-build :
5961 needs : [cpp-build]
6062 secrets : inherit
61- uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@release/25.12
63+ uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
6264 with :
6365 build_type : ${{ inputs.build_type || 'branch' }}
6466 branch : ${{ inputs.branch }}
6567 date : ${{ inputs.date }}
6668 script : ci/build_python.sh
6769 sha : ${{ inputs.sha }}
70+ sccache-dist-token-secret-name : GIST_REPO_READ_ORG_GITHUB_TOKEN
6871 upload-conda :
6972 needs : [cpp-build, python-build]
7073 secrets : inherit
71- uses : rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@release/25.12
74+ uses : rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
7275 with :
7376 build_type : ${{ inputs.build_type || 'branch' }}
7477 branch : ${{ inputs.branch }}
7578 date : ${{ inputs.date }}
7679 sha : ${{ inputs.sha }}
7780 wheel-build-libcuml :
7881 secrets : inherit
79- uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
82+ uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
8083 with :
8184 build_type : ${{ inputs.build_type || 'branch' }}
8285 branch : ${{ inputs.branch }}
8386 sha : ${{ inputs.sha }}
8487 date : ${{ inputs.date }}
88+ node_type : cpu16
8589 script : ci/build_wheel_libcuml.sh
8690 # build for every combination of arch and CUDA version, but only for the latest Python
8791 matrix_filter : group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
8892 package-name : libcuml
8993 package-type : cpp
94+ sccache-dist-token-secret-name : GIST_REPO_READ_ORG_GITHUB_TOKEN
9095 wheel-publish-libcuml :
9196 needs : wheel-build-libcuml
9297 secrets : inherit
93- uses : rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/25.12
98+ uses : rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
9499 with :
95100 build_type : ${{ inputs.build_type || 'branch' }}
96101 branch : ${{ inputs.branch }}
@@ -101,19 +106,21 @@ jobs:
101106 wheel-build-cuml :
102107 needs : wheel-build-libcuml
103108 secrets : inherit
104- uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
109+ uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
105110 with :
106111 build_type : ${{ inputs.build_type || 'branch' }}
107112 branch : ${{ inputs.branch }}
108113 sha : ${{ inputs.sha }}
109114 date : ${{ inputs.date }}
115+ node_type : cpu8
110116 script : ci/build_wheel_cuml.sh
111117 package-name : cuml
112118 package-type : python
119+ sccache-dist-token-secret-name : GIST_REPO_READ_ORG_GITHUB_TOKEN
113120 wheel-publish-cuml :
114121 needs : wheel-build-cuml
115122 secrets : inherit
116- uses : rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/25.12
123+ uses : rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
117124 with :
118125 build_type : ${{ inputs.build_type || 'branch' }}
119126 branch : ${{ inputs.branch }}
0 commit comments