From 75fb06fe2390f9bd01dc9fc37292b1b36296d829 Mon Sep 17 00:00:00 2001 From: jodhus Date: Tue, 3 Sep 2024 20:46:30 -0400 Subject: [PATCH] I'll get this right yet. --- .github/workflows/build-test-pypi.yml | 30 +++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-test-pypi.yml b/.github/workflows/build-test-pypi.yml index a2f5cf1..3f28034 100644 --- a/.github/workflows/build-test-pypi.yml +++ b/.github/workflows/build-test-pypi.yml @@ -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]