-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (29 loc) · 987 Bytes
/
build_test.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
name: Build Test
on: [push, pull_request]
jobs:
build:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
name: Install Python
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0
- name: Get submodules
run: git submodule update --init --recursive
- name: Build wheels for Windows
if: startsWith(matrix.os, 'windows')
run: |
python -m cibuildwheel --output-dir wheels
env:
CIBW_SKIP: "cp27-* pp27-*" # skip Python 2.7 wheels
- name: Build wheels for mac and manylinux
if: "!startsWith(matrix.os, 'windows')"
run: |
python -m cibuildwheel --output-dir wheels
env:
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"