summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJanakarajan Natarajan <janakan@amazon.com>2021-01-14 17:13:53 +0000
committerDavid Lord <davidism@gmail.com>2021-01-29 13:49:03 -0800
commitfff7934929be0d889685f33dae6f3f3b0f6d76c8 (patch)
treef3051e0d6d50af50ac73803a1087119cdd2615be /.github
parent76c7208b32bda679e6563d3231cc472a080c3015 (diff)
downloadmarkupsafe-fff7934929be0d889685f33dae6f3f3b0f6d76c8.tar.gz
Build aarch64 wheels
From v1.8.0, cibuildwheel allows for building non-native architectures with the CIBW_ARCHS_LINUX option.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 6999daa..5885f54 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -16,7 +16,13 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
env:
CIBW_SKIP: 'cp27-* pp27-* cp35-*'
+ CIBW_ARCHS_LINUX: auto aarch64
steps:
+ - name: Set up QEMU
+ if: runner.os == 'Linux'
+ uses: docker/setup-qemu-action@v1
+ with:
+ platforms: arm64
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with: