Skip to content

Commit e992f97

Browse files
committed
Prepare release/26.04
1 parent f9970e1 commit e992f97

12 files changed

Lines changed: 72 additions & 72 deletions

File tree

.github/workflows/build.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
cpp-build:
4848
needs: [telemetry-setup]
4949
secrets: inherit
50-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.14
50+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@release/26.04
5151
with:
5252
build_type: ${{ inputs.build_type || 'branch' }}
5353
branch: ${{ inputs.branch }}
@@ -58,7 +58,7 @@ jobs:
5858
python-build:
5959
needs: [telemetry-setup, cpp-build]
6060
secrets: inherit
61-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.14
61+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@release/26.04
6262
with:
6363
build_type: ${{ inputs.build_type || 'branch' }}
6464
branch: ${{ inputs.branch }}
@@ -70,7 +70,7 @@ jobs:
7070
python-build-noarch:
7171
needs: [telemetry-setup, cpp-build, python-build]
7272
secrets: inherit
73-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.14
73+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@release/26.04
7474
with:
7575
build_type: ${{ inputs.build_type || 'branch' }}
7676
branch: ${{ inputs.branch }}
@@ -81,7 +81,7 @@ jobs:
8181
upload-conda:
8282
needs: [cpp-build, python-build, python-build-noarch]
8383
secrets: inherit
84-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@python-3.14
84+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@release/26.04
8585
with:
8686
build_type: ${{ inputs.build_type || 'branch' }}
8787
branch: ${{ inputs.branch }}
@@ -91,7 +91,7 @@ jobs:
9191
if: github.ref_type == 'branch'
9292
needs: [python-build, python-build-noarch]
9393
secrets: inherit
94-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.14
94+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/26.04
9595
with:
9696
arch: "amd64"
9797
branch: ${{ inputs.branch }}
@@ -104,7 +104,7 @@ jobs:
104104
wheel-build-libcudf:
105105
needs: [telemetry-setup]
106106
secrets: inherit
107-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
107+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/26.04
108108
with:
109109
# build for every combination of arch and CUDA version, but only for the latest Python
110110
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
@@ -119,7 +119,7 @@ jobs:
119119
wheel-publish-libcudf:
120120
needs: wheel-build-libcudf
121121
secrets: inherit
122-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
122+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/26.04
123123
with:
124124
build_type: ${{ inputs.build_type || 'branch' }}
125125
branch: ${{ inputs.branch }}
@@ -130,7 +130,7 @@ jobs:
130130
wheel-build-pylibcudf:
131131
needs: [telemetry-setup, wheel-build-libcudf]
132132
secrets: inherit
133-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
133+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/26.04
134134
with:
135135
build_type: ${{ inputs.build_type || 'branch' }}
136136
branch: ${{ inputs.branch }}
@@ -145,7 +145,7 @@ jobs:
145145
wheel-publish-pylibcudf:
146146
needs: wheel-build-pylibcudf
147147
secrets: inherit
148-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
148+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/26.04
149149
with:
150150
build_type: ${{ inputs.build_type || 'branch' }}
151151
branch: ${{ inputs.branch }}
@@ -157,7 +157,7 @@ jobs:
157157
wheel-build-cudf:
158158
needs: [telemetry-setup, wheel-build-pylibcudf]
159159
secrets: inherit
160-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
160+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/26.04
161161
with:
162162
build_type: ${{ inputs.build_type || 'branch' }}
163163
branch: ${{ inputs.branch }}
@@ -172,7 +172,7 @@ jobs:
172172
wheel-publish-cudf:
173173
needs: wheel-build-cudf
174174
secrets: inherit
175-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
175+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/26.04
176176
with:
177177
build_type: ${{ inputs.build_type || 'branch' }}
178178
branch: ${{ inputs.branch }}
@@ -184,7 +184,7 @@ jobs:
184184
wheel-build-dask-cudf:
185185
needs: [telemetry-setup, wheel-build-cudf]
186186
secrets: inherit
187-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
187+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/26.04
188188
with:
189189
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
190190
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]))
@@ -200,7 +200,7 @@ jobs:
200200
wheel-publish-dask-cudf:
201201
needs: wheel-build-dask-cudf
202202
secrets: inherit
203-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
203+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/26.04
204204
with:
205205
build_type: ${{ inputs.build_type || 'branch' }}
206206
branch: ${{ inputs.branch }}
@@ -211,7 +211,7 @@ jobs:
211211
wheel-build-cudf-polars:
212212
needs: [telemetry-setup, wheel-build-pylibcudf]
213213
secrets: inherit
214-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
214+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/26.04
215215
with:
216216
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
217217
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]))
@@ -227,7 +227,7 @@ jobs:
227227
wheel-publish-cudf-polars:
228228
needs: wheel-build-cudf-polars
229229
secrets: inherit
230-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
230+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/26.04
231231
with:
232232
build_type: ${{ inputs.build_type || 'branch' }}
233233
branch: ${{ inputs.branch }}

.github/workflows/pandas-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
pandas-tests:
2323
# run the Pandas unit tests
2424
secrets: inherit
25-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.14
25+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/26.04
2626
with:
2727
build_type: nightly
2828
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)