We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff7276 commit 4fe58e2Copy full SHA for 4fe58e2
1 file changed
.github/workflows/ci.yml
@@ -146,12 +146,19 @@ jobs:
146
ref: "${{ steps.release_tag.outputs.newest_release_tag }}"
147
fetch-depth: 0
148
149
+ - name: Set up QEMU
150
+ if: runner.os == 'Linux'
151
+ uses: docker/setup-qemu-action@v1
152
+ with:
153
+ platforms: arm64
154
+
155
- name: Build wheels
156
uses: pypa/cibuildwheel@v2.16.2
157
# to supply options, put them in 'env', like:
158
env:
159
CIBW_SKIP: cp36-*
160
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
161
+ CIBW_ARCHS_LINUX: auto aarch64
162
CIBW_BUILD_VERBOSITY: 3
163
REQUIRE_CYTHON: 1
164
0 commit comments