-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add wheels for aarch64 manylinux and add wheel wheels for python3.6 for musllinux and aarch64 manylinux
- Loading branch information
1 parent
e754b25
commit d167534
Showing
1 changed file
with
33 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,25 +136,51 @@ jobs: | |
name: wheels | ||
path: dist | ||
|
||
build_wheels: | ||
name: Build wheels for musllinux | ||
muslwheels_x86: | ||
name: Build musllinux wheels for x86 | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
CIBW_BUILD_VERBOSITY: 1 | ||
CIBW_BEFORE_ALL_LINUX: "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y" | ||
CIBW_ARCHS_LINUX: "auto aarch64" | ||
CIBW_ARCHS_LINUX: "auto64" | ||
CIBW_ENVIRONMENT: 'PATH="$PATH:$HOME/.cargo/bin"' | ||
CIBW_BUILD: "*-musllinux_x86_64 *-musllinux_aarch64" | ||
CIBW_SKIP: "cp27-* cp34-* cp35-* cp36-*" | ||
CIBW_BUILD: "*-musllinux_x86_64" | ||
CIBW_SKIP: "cp27-* cp34-* cp35-* " | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
output-dir: dist | ||
|
||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: dist | ||
|
||
aarch64_wheels: | ||
name: Build wheels for aarch64 linux | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
CIBW_BUILD_VERBOSITY: 1 | ||
CIBW_BEFORE_ALL_LINUX: "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y" | ||
CIBW_ARCHS_LINUX: "aarch64" | ||
CIBW_ENVIRONMENT: 'PATH="$PATH:$HOME/.cargo/bin"' | ||
CIBW_BUILD: "*-musllinux_aarch64 *-manylinux_aarch64" | ||
CIBW_SKIP: "cp27-* cp34-* cp35-* " | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: all | ||
platforms: arm64 | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
|
@@ -171,7 +197,7 @@ jobs: | |
name: Release | ||
runs-on: ubuntu-latest | ||
if: "startsWith(github.ref, 'refs/tags/')" | ||
needs: [ macos, windows, linux, build_wheels] | ||
needs: [ macos, windows, linux, muslwheels_x86, aarch64_wheels] | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
|