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