Skip to content

Commit 51345ca

Browse files
AyodeAwecdinea
authored andcommitted
Revert "Forward-merge release/25.12 into main" (#973)
Reverts #972
1 parent ccc4dfa commit 51345ca

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
jobs:
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' }}
4040
branch: ${{ inputs.branch }}
@@ -45,7 +45,7 @@ jobs:
4545
if: github.ref_type == 'branch'
4646
needs: [python-build]
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/25.12
48+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
4949
with:
5050
arch: "amd64"
5151
branch: ${{ inputs.branch }}
@@ -58,7 +58,7 @@ jobs:
5858
python-build:
5959
needs: [cpp-build]
6060
secrets: inherit
61-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@release/25.12
61+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
6262
with:
6363
build_type: ${{ inputs.build_type || 'branch' }}
6464
branch: ${{ inputs.branch }}
@@ -68,15 +68,15 @@ jobs:
6868
upload-conda:
6969
needs: [cpp-build, python-build]
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@release/25.12
71+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
7272
with:
7373
build_type: ${{ inputs.build_type || 'branch' }}
7474
branch: ${{ inputs.branch }}
7575
date: ${{ inputs.date }}
7676
sha: ${{ inputs.sha }}
7777
wheel-build:
7878
secrets: inherit
79-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
79+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
8080
with:
8181
build_type: ${{ inputs.build_type || 'branch' }}
8282
branch: ${{ inputs.branch }}
@@ -88,7 +88,7 @@ jobs:
8888
wheel-publish:
8989
needs: wheel-build
9090
secrets: inherit
91-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/25.12
91+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
9292
with:
9393
build_type: ${{ inputs.build_type || 'branch' }}
9494
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- wheel-tests
1919
- telemetry-setup
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@release/25.12
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
2222
telemetry-setup:
2323
runs-on: ubuntu-latest
2424
continue-on-error: true
@@ -33,34 +33,34 @@ jobs:
3333
checks:
3434
secrets: inherit
3535
needs: telemetry-setup
36-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@release/25.12
36+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
3737
with:
3838
ignored_pr_jobs: telemetry-summarize
3939
conda-cpp-build:
4040
needs: checks
4141
secrets: inherit
42-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@release/25.12
42+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
4343
with:
4444
build_type: pull-request
4545
script: ci/build_cpp.sh
4646
conda-python-build:
4747
needs: conda-cpp-build
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@release/25.12
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
5050
with:
5151
build_type: pull-request
5252
script: ci/build_python.sh
5353
conda-python-tests:
5454
needs: conda-python-build
5555
secrets: inherit
56-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@release/25.12
56+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
5757
with:
5858
build_type: pull-request
5959
script: ci/test_python.sh
6060
docs-build:
6161
needs: conda-python-build
6262
secrets: inherit
63-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/25.12
63+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
6464
with:
6565
build_type: pull-request
6666
node_type: "gpu-l4-latest-1"
@@ -70,7 +70,7 @@ jobs:
7070
wheel-build:
7171
needs: checks
7272
secrets: inherit
73-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
73+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
7474
with:
7575
build_type: pull-request
7676
script: ci/build_wheel.sh
@@ -79,7 +79,7 @@ jobs:
7979
wheel-tests:
8080
needs: wheel-build
8181
secrets: inherit
82-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/25.12
82+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
8383
with:
8484
build_type: pull-request
8585
script: ci/test_wheel.sh

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
conda-python-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@release/25.12
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
sha: ${{ inputs.sha }}
3535
wheel-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/25.12
37+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
3838
with:
3939
build_type: ${{ inputs.build_type }}
4040
branch: ${{ inputs.branch }}

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@release/25.12
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

notebooks/Using_Cache.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@
432432
"\n",
433433
"#### Cache Statistics\n",
434434
"\n",
435-
"If used in the multi-processing environment (e.g, using `concurrent.futures.ProcessPoolExecutor()`), cache hit count (`hit_count`) and miss count (`miss_count`) wouldn't be recorded in the release/25.12 process's cache object.\n",
435+
"If used in the multi-processing environment (e.g, using `concurrent.futures.ProcessPoolExecutor()`), cache hit count (`hit_count`) and miss count (`miss_count`) wouldn't be recorded in the main process's cache object.\n",
436436
"\n",
437437
"\n",
438438
"### `shared_memory` strategy\n",

0 commit comments

Comments
 (0)