@@ -146,12 +146,19 @@ jobs:
|
146 | 146 | ref: "${{ steps.release_tag.outputs.newest_release_tag }}" |
147 | 147 | fetch-depth: 0 |
148 | 148 | |
| 149 | + - name: Set up QEMU |
| 150 | +if: runner.os == 'Linux' |
| 151 | +uses: docker/setup-qemu-action@v1 |
| 152 | +with: |
| 153 | +platforms: arm64 |
| 154 | + |
149 | 155 | - name: Build wheels |
150 | 156 | uses: pypa/cibuildwheel@v2.16.2 |
151 | 157 | # to supply options, put them in 'env', like: |
152 | 158 | env: |
153 | 159 | CIBW_SKIP: cp36-* |
154 | 160 | CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc |
| 161 | +CIBW_ARCHS_LINUX: auto aarch64 |
155 | 162 | CIBW_BUILD_VERBOSITY: 3 |
156 | 163 | REQUIRE_CYTHON: 1 |
157 | 164 | |
|