Skip to content

Commit

Permalink
Enable qemu emulation and aarch64 build for prophet (#2254)
Browse files Browse the repository at this point in the history
  • Loading branch information
thechopkins authored Sep 8, 2022
1 parent 9869a3b commit 7713c4e
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,18 @@ env:

jobs:
make-wheels:
name: Make ${{ matrix.os }} wheels
name: Make ${{ matrix.os }} ${{ matrix.cibw_arch }} ${{ matrix.py_version }} wheels
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
cibw_arch: ["native", "aarch64"]
py_version: ["cp37-*", "cp38-*", "cp39-*", "cp310-*"]
exclude:
- os: macos-latest
cibw_arch: "aarch64"
- os: windows-latest
cibw_arch: "aarch64"
fail-fast: false

steps:
Expand All @@ -30,6 +37,12 @@ jobs:
path: C:/rtools40
key: ${{ runner.os }}-${{ env.OS_VERSION }}-rtools-v1

- name: Set up QEMU
if: matrix.cibw_arch == 'aarch64'
uses: docker/setup-qemu-action@v2
with:
platforms: arm64

- name: "Build wheels"
uses: pypa/cibuildwheel@v2.6.0
with:
Expand All @@ -38,17 +51,17 @@ jobs:
CIBW_ENVIRONMENT: >
STAN_BACKEND="${{ env.STAN_BACKEND }}"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-*
CIBW_BUILD: ${{ matrix.py_version }}
CIBW_SKIP: "*musllinux*"
CIBW_ARCHS: native
CIBW_ARCHS: ${{ matrix.cibw_arch }}
CIBW_BUILD_FRONTEND: build
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest --pyargs prophet

- name: "Upload wheel as artifact"
uses: actions/upload-artifact@v3
with:
name: artifact-${{ matrix.os }}-wheel
name: artifact-${{ matrix.os }}-${{ matrix.cibw_arch }}-wheel
path: "./**/*.whl"

make-sdist:
Expand Down

0 comments on commit 7713c4e

Please sign in to comment.