I'll get this right yet.
This commit is contained in:
parent
b8ce0c6635
commit
75fb06fe23
1 changed files with 15 additions and 15 deletions
30
.github/workflows/build-test-pypi.yml
vendored
30
.github/workflows/build-test-pypi.yml
vendored
|
@ -42,21 +42,21 @@ jobs:
|
|||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
archs: ["x86_64, i686", "aarch64", "ppc64le", "s390x"]
|
||||
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
|
||||
archs: ["x86_64, i686", "arm64"]
|
||||
build: ["manylinux", "musllinux"]
|
||||
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||
include:
|
||||
- os: windows-latest
|
||||
archs: "AMD64"
|
||||
- os: windows-latest
|
||||
archs: "x86"
|
||||
- os: windows-latest
|
||||
archs: "ARM64"
|
||||
- os: macos-13
|
||||
archs: "x86_64"
|
||||
- os: macos-14
|
||||
archs: "arm64"
|
||||
#include:
|
||||
# - os: windows-latest
|
||||
# archs: "AMD64"
|
||||
# - os: windows-latest
|
||||
# archs: "x86"
|
||||
# - os: windows-latest
|
||||
# archs: "ARM64"
|
||||
# - os: macos-13
|
||||
# archs: "x86_64"
|
||||
# - os: macos-14
|
||||
# archs: "arm64"
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
@ -85,8 +85,8 @@ jobs:
|
|||
- name: Upload wheels to artifact container
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: dist-${{ matrix.os }}-${{ matrix.python }}
|
||||
path: wheelhouse/*.whl
|
||||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
||||
path: ./wheelhouse/*.whl
|
||||
|
||||
upload_all:
|
||||
needs: [build_wheels, make_sdist]
|
||||
|
|
Loading…
Reference in a new issue