I'll get this right yet.

This commit is contained in:
Josh W 2024-09-03 20:46:30 -04:00
parent b8ce0c6635
commit 75fb06fe23

View file

@ -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]