File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ macos_arm64_wheel_task:
31
31
32
32
cibuildwheel_script :
33
33
- bash build_tools/wheels/build_wheels.sh
34
- - bash build_tools/cirrus/update_tracking_issue.sh true
35
34
36
35
on_failure :
37
36
update_tracker_script :
@@ -73,7 +72,6 @@ linux_arm64_wheel_task:
73
72
cibuildwheel_script :
74
73
- apt install -y python3 python-is-python3
75
74
- bash build_tools/wheels/build_wheels.sh
76
- - bash build_tools/cirrus/update_tracking_issue.sh true
77
75
78
76
on_failure :
79
77
update_tracker_script :
@@ -82,6 +80,17 @@ linux_arm64_wheel_task:
82
80
wheels_artifacts :
83
81
path : " wheelhouse/*"
84
82
83
+ # Update tracker when all jobs are successful
84
+ update_tracker_success :
85
+ depends_on :
86
+ - macos_arm64_wheel
87
+ - linux_arm64_wheel
88
+ container :
89
+ image : python:3.11
90
+ # Only update tracker for nightly builds
91
+ only_if : $CIRRUS_CRON == "nightly"
92
+ update_script :
93
+ - bash build_tools/cirrus/update_tracking_issue.sh true
85
94
86
95
wheels_upload_task :
87
96
depends_on :
You can’t perform that action at this time.
0 commit comments