File tree 9 files changed +45
-18
lines changed
9 files changed +45
-18
lines changed Original file line number Diff line number Diff line change 2
2
# https://docs.gha-runners.nvidia.com/apps/copy-pr-bot/
3
3
4
4
enabled : true
5
+ auto_sync_draft : false
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ concurrency:
28
28
jobs :
29
29
conda-python-build :
30
30
secrets : inherit
31
- uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12
31
+ uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
32
32
with :
33
33
build_type : ${{ inputs.build_type || 'branch' }}
34
34
branch : ${{ inputs.branch }}
@@ -37,15 +37,15 @@ jobs:
37
37
upload-conda :
38
38
needs : [conda-python-build]
39
39
secrets : inherit
40
- uses : rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.12
40
+ uses : rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02
41
41
with :
42
42
build_type : ${{ inputs.build_type || 'branch' }}
43
43
branch : ${{ inputs.branch }}
44
44
date : ${{ inputs.date }}
45
45
sha : ${{ inputs.sha }}
46
46
wheel-build :
47
47
secrets : inherit
48
- uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
48
+ uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
49
49
with :
50
50
build_type : ${{ inputs.build_type || 'branch' }}
51
51
branch : ${{ inputs.branch }}
55
55
wheel-publish :
56
56
needs : wheel-build
57
57
secrets : inherit
58
- uses : rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.12
58
+ uses : rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
59
59
with :
60
60
build_type : ${{ inputs.build_type || 'branch' }}
61
61
branch : ${{ inputs.branch }}
Original file line number Diff line number Diff line change @@ -18,34 +18,34 @@ jobs:
18
18
- wheel-build
19
19
- wheel-tests
20
20
secrets : inherit
21
- uses : rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.12
21
+ uses : rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
22
22
checks :
23
23
secrets : inherit
24
- uses : rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.12
24
+ uses : rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
25
25
conda-python-build :
26
26
needs : checks
27
27
secrets : inherit
28
- uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12
28
+ uses : rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
29
29
with :
30
30
build_type : pull-request
31
31
conda-python-tests :
32
32
needs : conda-python-build
33
33
secrets : inherit
34
- uses : rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12
34
+ uses : rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
35
35
with :
36
36
build_type : pull-request
37
37
container-options : " --cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
38
38
wheel-build :
39
39
needs : checks
40
40
secrets : inherit
41
- uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
41
+ uses : rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
42
42
with :
43
43
build_type : pull-request
44
44
script : ci/build_wheel.sh
45
45
wheel-tests :
46
46
needs : wheel-build
47
47
secrets : inherit
48
- uses : rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
48
+ uses : rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
49
49
with :
50
50
build_type : pull-request
51
51
script : ci/test_wheel.sh
Original file line number Diff line number Diff line change 16
16
jobs :
17
17
conda-python-tests :
18
18
secrets : inherit
19
- uses : rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12
19
+ uses : rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
20
20
with :
21
21
build_type : nightly
22
22
branch : ${{ inputs.branch }}
25
25
container-options : " --cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
26
26
wheel-tests :
27
27
secrets : inherit
28
- uses : rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
28
+ uses : rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
29
29
with :
30
30
build_type : nightly
31
31
branch : ${{ inputs.branch }}
Original file line number Diff line number Diff line change
1
+ name : Trigger Breaking Change Notifications
2
+
3
+ on :
4
+ pull_request_target :
5
+ types :
6
+ - closed
7
+ - reopened
8
+ - labeled
9
+ - unlabeled
10
+
11
+ jobs :
12
+ trigger-notifier :
13
+ if : contains(github.event.pull_request.labels.*.name, 'breaking')
14
+ secrets : inherit
15
+ uses :
rapidsai/shared-workflows/.github/workflows/[email protected]
16
+ with :
17
+ sender_login : ${{ github.event.sender.login }}
18
+ sender_avatar : ${{ github.event.sender.avatar_url }}
19
+ repo : ${{ github.repository }}
20
+ pr_number : ${{ github.event.pull_request.number }}
21
+ pr_title : " ${{ github.event.pull_request.title }}"
22
+ pr_body : " ${{ github.event.pull_request.body || '_Empty PR description_' }}"
23
+ pr_base_ref : ${{ github.event.pull_request.base.ref }}
24
+ pr_author : ${{ github.event.pull_request.user.login }}
25
+ event_action : ${{ github.event.action }}
26
+ pr_merged : ${{ github.event.pull_request.merged }}
Original file line number Diff line number Diff line change 25
25
- id : verify-alpha-spec
26
26
args :
27
27
- --fix
28
- - --rapids-version=24.12
28
+ - --rapids-version=25.02
29
29
- repo : https://github.com/rapidsai/dependency-file-generator
30
30
rev : v1.16.0
31
31
hooks :
Original file line number Diff line number Diff line change 1
- 0.41 .0
1
+ 0.42 .0
Original file line number Diff line number Diff line change @@ -225,20 +225,20 @@ dependencies:
225
225
- pytest-rerunfailures
226
226
- output_types : [conda]
227
227
packages :
228
- - &cudf_unsuffixed cudf==24.12 .*,>=0.0.0a0
228
+ - &cudf_unsuffixed cudf==25.2 .*,>=0.0.0a0
229
229
specific :
230
230
- output_types : [requirements, pyproject]
231
231
matrices :
232
232
- matrix :
233
233
cuda : " 12.*"
234
234
cuda_suffixed : " true"
235
235
packages :
236
- - cudf-cu12==24.12 .*,>=0.0.0a0
236
+ - cudf-cu12==25.2 .*,>=0.0.0a0
237
237
- matrix :
238
238
cuda : " 11.*"
239
239
cuda_suffixed : " true"
240
240
packages :
241
- - cudf-cu11==24.12 .*,>=0.0.0a0
241
+ - cudf-cu11==25.2 .*,>=0.0.0a0
242
242
- matrix :
243
243
packages :
244
244
- *cudf_unsuffixed
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ classifiers = [
48
48
[project .optional-dependencies ]
49
49
test = [
50
50
" cloudpickle" ,
51
- " cudf==24.12 .*,>=0.0.0a0" ,
51
+ " cudf==25.2 .*,>=0.0.0a0" ,
52
52
" cupy-cuda12x>=12.0.0" ,
53
53
" dask" ,
54
54
" distributed" ,
You can’t perform that action at this time.
0 commit comments