Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
.github/workflows/sdist.yml: Only build wheels for sagemath-objects, …
Browse files Browse the repository at this point in the history
…-categories
  • Loading branch information
Matthias Koeppe committed Jun 3, 2022
1 parent 431492d commit 1e14375
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,13 @@ jobs:

build_wheels:
needs: sdists_for_pypi
name: Build wheels on ${{ matrix.os }}
name: Build wheels for ${{ matrix.pkg }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-10.15]
pkg: [sagemath-objects, sagemath-categories]
env:
# Disable building PyPy wheels on all platforms
CIBW_SKIP: pp*
Expand All @@ -98,11 +99,9 @@ jobs:
name: dist
path: dist

- name: Build wheels
- name: Build platform wheels
run: |
for pkg in dist/*.tar.gz; do
pipx run cibuildwheel==2.5.0 $pkg
done
pipx run cibuildwheel==2.5.0 dist/${{ matrix.pkg }}*.tar.gz
- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 1e14375

Please sign in to comment.