-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As the upstream Pact reference library has a different set of targets, the build targets for this library have been updated to match. The most significant change is the dropping is 32-bit architectures altogether. This also adds a `musllinux` target (which was previously not supported). Signed-off-by: JP-Ellis <[email protected]>
- Loading branch information
Showing
1 changed file
with
0 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 |
---|---|---|
|
@@ -56,34 +56,6 @@ jobs: | |
path: ./wheelhouse/*.whl | ||
if-no-files-found: error | ||
|
||
build-x86: | ||
name: Build wheels on ${{ matrix.os }} (x86, 32-bit) | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: windows-latest | ||
archs: x86 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# Fetch all tags | ||
fetch-depth: 0 | ||
|
||
- name: Create wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_ARCHS: ${{ matrix.archs }} | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: ./wheelhouse/*.whl | ||
if-no-files-found: error | ||
|
||
build-arm64: | ||
name: Build wheels on ${{ matrix.os }} (arm64) | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -97,10 +69,8 @@ jobs: | |
include: | ||
- os: ubuntu-latest | ||
archs: aarch64 | ||
build: "*manylinux*" | ||
- os: macos-latest | ||
archs: arm64 | ||
build: "*" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -118,7 +88,6 @@ jobs: | |
uses: pypa/[email protected] | ||
env: | ||
CIBW_ARCHS: ${{ matrix.archs }} | ||
CIBW_BUILD: ${{ matrix.build }} | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
|