@@ -9,7 +9,7 @@ macos_arm64_wheel_task:
9
9
SKLEARN_SKIP_NETWORK_TESTS=1
10
10
SKLEARN_BUILD_PARALLEL=5
11
11
CPU_COUNT=2
12
- CIBW_TEST_COMMAND : bash {project}/build_tools/github /test_wheels.sh
12
+ CIBW_TEST_COMMAND : bash {project}/build_tools/wheels /test_wheels.sh
13
13
CIBW_TEST_REQUIRES : pytest pandas threadpoolctl pytest-xdist
14
14
CIBW_BUILD_VERBOSITY : 1
15
15
PATH : $HOME/mambaforge/bin/:$PATH
@@ -32,7 +32,43 @@ macos_arm64_wheel_task:
32
32
- bash ~/mambaforge.sh -b -p ~/mambaforge
33
33
34
34
cibuildwheel_script :
35
- - bash build_tools/github/build_wheels.sh
35
+ - bash build_tools/wheels/build_wheels.sh
36
+
37
+ wheels_artifacts :
38
+ path : " wheelhouse/*"
39
+
40
+ linux_arm64_wheel_task :
41
+ compute_engine_instance :
42
+ image_project : cirrus-images
43
+ image : family/docker-builder-arm64
44
+ architecture : arm64
45
+ platform : linux
46
+ cpu : 4
47
+ memory : 4G
48
+ env :
49
+ CONFTEST_PATH : ${CIRRUS_WORKING_DIR}/conftest.py
50
+ CONFTEST_NAME : conftest.py
51
+ CIBW_ENVIRONMENT : OMP_NUM_THREADS=2
52
+ OPENBLAS_NUM_THREADS=2
53
+ SKLEARN_SKIP_NETWORK_TESTS=1
54
+ SKLEARN_BUILD_PARALLEL=5
55
+ CPU_COUNT=4
56
+ CIBW_TEST_COMMAND : bash {project}/build_tools/wheels/test_wheels.sh
57
+ CIBW_TEST_REQUIRES : pytest pandas threadpoolctl pytest-xdist
58
+ CIBW_BUILD_VERBOSITY : 1
59
+ matrix :
60
+ - env :
61
+ CIBW_BUILD : cp38-manylinux_aarch64
62
+ - env :
63
+ CIBW_BUILD : cp39-manylinux_aarch64
64
+ - env :
65
+ CIBW_BUILD : cp310-manylinux_aarch64
66
+ - env :
67
+ CIBW_BUILD : cp311-manylinux_aarch64
68
+
69
+ cibuildwheel_script :
70
+ - apt install -y python3 python-is-python3
71
+ - bash build_tools/wheels/build_wheels.sh
36
72
37
73
wheels_artifacts :
38
74
path : " wheelhouse/*"
0 commit comments