-
Notifications
You must be signed in to change notification settings - Fork 26
50 lines (40 loc) · 1.38 KB
/
build_aarch64.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
name: Build Wheels
on: [push, workflow_dispatch]
env:
CIBW_SKIP: cp36-* cp37* pp* *-musllinux* cp312*
jobs:
build_wheels:
name: Build wheels on ${{matrix.arch}} for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
include:
- os: ubuntu-20.04
arch: aarch64
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
if: ${{ matrix.arch == 'aarch64' }}
uses: docker/setup-qemu-action@v2
- name: Install OpenSSL
if: ${{ matrix.arch == 'aarch64' }}
run: sudo apt-get update && sudo apt-get install -y libssl-dev cmake
- name: Set OpenSSL path
run: echo "OPENSSL_ROOT_DIR=/usr" >> $GITHUB_ENV
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
# with:
# cmake-version: '3.16.x'
- name: Build wheels
uses: pypa/[email protected]
# to supply options, put them in 'env', like:
env:
CIBW_BEFORE_BUILD: git submodule init && git submodule update && pip install "cmake>=3.30.2" && pip install cython numpy scikit-build
CPPFLAGS: -I/usr/local/opt/zlib/include
LDFLAGS: -L/usr/local/opt/zlib/lib
CIBW_ARCHS_MACOS: "arm64"
CIBW_ARCHS_LINUX: "aarch64"
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl