-
Notifications
You must be signed in to change notification settings - Fork 43
79 lines (74 loc) · 2.54 KB
/
build_wheels.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build & Test
on:
schedule:
- cron: '0 1 * * 4' # Runs every Thursday at 1 AM (UTC)
pull_request:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_wheels:
name: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Check for latest setpup: https://github.com/pypa/cibuildwheel/blob/main/examples/github-with-qemu.yml
# macos-13 is Intel and macos-14 is Apple Silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
python: [cp310, cp311, cp312] # As of 3/Oct/24 ortools was not compatible with cp313
arch: [x86_64, aarch64, AMD64, arm64]
# Use exclude instead of include as it doesn't have the correct behviour (overirdes values)
exclude:
# Ubuntu include: x86_64, aarch64
- os: ubuntu-latest
arch: AMD64
- os: ubuntu-latest
arch: arm64
# Macos-13 include: x86_64
- os: macos-13
arch: aarch64
- os: macos-13
arch: AMD64
- os: macos-13
arch: arm64
# Macos-14 include: arm64
- os: macos-13
arch: x86_64
- os: macos-13
arch: aarch64
- os: macos-13
arch: AMD64
# Windows include: AMD64
- os: windows-2022
arch: x86_64
- os: windows-2022
arch: aarch64
- os: windows-2022
arch: arm64
fail-fast: false
steps:
- name: Set up QEMU
if: matrix.arch == 'aarch64'
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- uses: actions/checkout@v3
- name: Build and test wheels
uses: pypa/[email protected] # You may need to update to get latest Python versions
env:
# Build
# NOTE: build dependcies are defined in pyproject.toml (including numpy version)
CIBW_BUILD_FRONTEND: "build"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: "${{ matrix.python }}*"
CIBW_SKIP: "*musllinux*"
# Test
CIBW_BEFORE_TEST: "pip install --upgrade pip && pip install -r requirements-dev.txt && pip list"
CIBW_TEST_COMMAND: "pytest {project}/tests"
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl