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 }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
|
||||||
archs: ["x86_64, i686", "aarch64", "ppc64le", "s390x"]
|
archs: ["x86_64, i686", "arm64"]
|
||||||
build: ["manylinux", "musllinux"]
|
build: ["manylinux", "musllinux"]
|
||||||
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||||
include:
|
#include:
|
||||||
- os: windows-latest
|
# - os: windows-latest
|
||||||
archs: "AMD64"
|
# archs: "AMD64"
|
||||||
- os: windows-latest
|
# - os: windows-latest
|
||||||
archs: "x86"
|
# archs: "x86"
|
||||||
- os: windows-latest
|
# - os: windows-latest
|
||||||
archs: "ARM64"
|
# archs: "ARM64"
|
||||||
- os: macos-13
|
# - os: macos-13
|
||||||
archs: "x86_64"
|
# archs: "x86_64"
|
||||||
- os: macos-14
|
# - os: macos-14
|
||||||
archs: "arm64"
|
# archs: "arm64"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -85,8 +85,8 @@ jobs:
|
||||||
- name: Upload wheels to artifact container
|
- name: Upload wheels to artifact container
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist-${{ matrix.os }}-${{ matrix.python }}
|
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
||||||
path: wheelhouse/*.whl
|
path: ./wheelhouse/*.whl
|
||||||
|
|
||||||
upload_all:
|
upload_all:
|
||||||
needs: [build_wheels, make_sdist]
|
needs: [build_wheels, make_sdist]
|
||||||
|
|
Loading…
Reference in a new issue