@@ -14,6 +14,10 @@ macos_arm64_wheel_task:
14
14
CIBW_BUILD_VERBOSITY : 1
15
15
PATH : $HOME/mambaforge/bin/:$PATH
16
16
CONDA_HOME : $HOME/mambaforge
17
+ # Upload tokens have been encrypted via the CirrusCI interface:
18
+ # https://cirrus-ci.org/guide/writing-tasks/#encrypted-variables
19
+ # See `maint_tools/update_tracking_issue.py` for details on the permissions the token requires.
20
+ BOT_GITHUB_TOKEN : ENCRYPTED[9b50205e2693f9e4ce9a3f0fcb897a259289062fda2f5a3b8aaa6c56d839e0854a15872f894a70fca337dd4787274e0f]
17
21
matrix :
18
22
- env :
19
23
CIBW_BUILD : cp38-macosx_arm64
@@ -30,6 +34,11 @@ macos_arm64_wheel_task:
30
34
31
35
cibuildwheel_script :
32
36
- bash build_tools/wheels/build_wheels.sh
37
+ - bash build_tools/cirrus/update_tracking_issue.sh true
38
+
39
+ on_failure :
40
+ update_tracker_script :
41
+ - bash build_tools/cirrus/update_tracking_issue.sh false
33
42
34
43
wheels_artifacts :
35
44
path : " wheelhouse/*"
@@ -53,6 +62,10 @@ linux_arm64_wheel_task:
53
62
CIBW_TEST_COMMAND : bash {project}/build_tools/wheels/test_wheels.sh
54
63
CIBW_TEST_REQUIRES : pytest pandas threadpoolctl pytest-xdist
55
64
CIBW_BUILD_VERBOSITY : 1
65
+ # Upload tokens have been encrypted via the CirrusCI interface:
66
+ # https://cirrus-ci.org/guide/writing-tasks/#encrypted-variables
67
+ # See `maint_tools/update_tracking_issue.py` for details on the permissions the token requires.
68
+ BOT_GITHUB_TOKEN : ENCRYPTED[9b50205e2693f9e4ce9a3f0fcb897a259289062fda2f5a3b8aaa6c56d839e0854a15872f894a70fca337dd4787274e0f]
56
69
matrix :
57
70
- env :
58
71
CIBW_BUILD : cp38-manylinux_aarch64
@@ -66,6 +79,11 @@ linux_arm64_wheel_task:
66
79
cibuildwheel_script :
67
80
- apt install -y python3 python-is-python3
68
81
- bash build_tools/wheels/build_wheels.sh
82
+ - bash build_tools/cirrus/update_tracking_issue.sh true
83
+
84
+ on_failure :
85
+ update_tracker_script :
86
+ - bash build_tools/cirrus/update_tracking_issue.sh false
69
87
70
88
wheels_artifacts :
71
89
path : " wheelhouse/*"
0 commit comments