-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfd1b19
commit a09c9a3
Showing
1 changed file
with
31 additions
and
31 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 |
---|---|---|
|
@@ -54,37 +54,37 @@ jobs: | |
name: wheels-linux-${{ matrix.platform.target }} | ||
path: dist | ||
|
||
musllinux: | ||
runs-on: ${{ matrix.platform.runner }} | ||
strategy: | ||
matrix: | ||
platform: | ||
- runner: ubuntu-latest | ||
target: x86_64 | ||
# - runner: ubuntu-latest | ||
# target: x86 | ||
# - runner: ubuntu-latest | ||
# target: aarch64 | ||
# - runner: ubuntu-latest | ||
# target: armv7 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- name: Build wheels | ||
uses: PyO3/[email protected] | ||
with: | ||
target: ${{ matrix.platform.target }} | ||
args: --release --out dist --find-interpreter | ||
sccache: 'true' | ||
manylinux: musllinux_1_2 | ||
before-script-linux: (apt-get update && apt-get install -y apt-utils && apt-get install -y pkg-config libssl-dev) || (yum install openssl openssl-devel -y) | ||
- name: Upload wheels | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: wheels-musllinux-${{ matrix.platform.target }} | ||
path: dist | ||
# musllinux: | ||
# runs-on: ${{ matrix.platform.runner }} | ||
# strategy: | ||
# matrix: | ||
# platform: | ||
# - runner: ubuntu-latest | ||
# target: x86_64 | ||
# # - runner: ubuntu-latest | ||
# # target: x86 | ||
# # - runner: ubuntu-latest | ||
# # target: aarch64 | ||
# # - runner: ubuntu-latest | ||
# # target: armv7 | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: 3.x | ||
# - name: Build wheels | ||
# uses: PyO3/[email protected] | ||
# with: | ||
# target: ${{ matrix.platform.target }} | ||
# args: --release --out dist --find-interpreter | ||
# sccache: 'true' | ||
# manylinux: musllinux_1_2 | ||
# before-script-linux: (apt-get update && apt-get install -y apt-utils && apt-get install -y pkg-config libssl-dev) || (yum install openssl openssl-devel -y) | ||
# - name: Upload wheels | ||
# uses: actions/upload-artifact@v4 | ||
# with: | ||
# name: wheels-musllinux-${{ matrix.platform.target }} | ||
# path: dist | ||
|
||
macos: | ||
runs-on: ${{ matrix.platform.runner }} | ||
|