-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.cirrus.yml
59 lines (52 loc) · 1.54 KB
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
only_if: $CIRRUS_BRANCH == 'main' || $CIRRUS_TAG != '' || $CIRRUS_PR != ''
install_cibuildwheel_script:
- python -m pip install cibuildwheel==2.17.0
run_cibuildwheel_script:
- cibuildwheel
wheels_artifacts:
path: "wheelhouse/*"
linux_x86_task:
name: Build Linux x86 wheels.
compute_engine_instance:
image_project: cirrus-images
image: family/docker-builder
platform: linux
cpu: 4
memory: 4G
install_pre_requirements_script:
- apt install -y python3-venv python-is-python3
<<: *BUILD_AND_STORE_WHEELS
linux_aarch64_task:
name: Build Linux aarch64 wheels.
compute_engine_instance:
image_project: cirrus-images
image: family/docker-builder-arm64
architecture: arm64
platform: linux
cpu: 4
memory: 4G
install_pre_requirements_script:
- apt install -y python3-venv python-is-python3
<<: *BUILD_AND_STORE_WHEELS
#windows_x86_task:
# name: Build Windows x86 wheels.
# windows_container:
# image: cirrusci/windowsservercore:visualstudio2022
# cpu: 4
# memory: 4G
#
# install_pre_requirements_script:
# - choco install -y --no-progress python3 --version 3.10.6
# - refreshenv
# - echo PATH=%PATH% >> "%CIRRUS_ENV%"
# <<: *BUILD_AND_STORE_WHEELS
macos_arm64_task:
name: Build macOS arm64 wheels.
macos_instance:
image: ghcr.io/cirruslabs/macos-sonoma-xcode
env:
PATH: /opt/homebrew/opt/[email protected]/libexec/bin:$PATH
install_pre_requirements_script:
- brew install [email protected]
<<: *BUILD_AND_STORE_WHEELS