Skip to content

Commit

Permalink
Merge pull request #57 from roy-ht/add-arm-support
Browse files Browse the repository at this point in the history
💚  Add arm & apple silicon support
  • Loading branch information
roy-ht authored Oct 8, 2021
2 parents d012791 + 59c32dc commit 543e42b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CI_CD_workflow.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI_CD

on: [push, pull_request]
on: push

jobs:
build_wheels:
Expand All @@ -14,6 +14,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
with:
platforms: all

- name: Build wheels
uses: joerick/[email protected]
with:
Expand All @@ -23,6 +29,8 @@ jobs:
CIBW_SKIP: "cp27-*"
CIBW_TEST_REQUIRES: nose
CIBW_TEST_COMMAND: "nosetests {project}/test"
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_ARCHS_LINUX: "auto aarch64"

- name: Show built files
shell: bash
Expand Down

0 comments on commit 543e42b

Please sign in to comment.