Skip to content

Commit

Permalink
Merge pull request #13 from MikeMoore63/feat/matrixbuild
Browse files Browse the repository at this point in the history
feat: move to matrix builds to speed them up
  • Loading branch information
MikeMoore63 authored Sep 7, 2024
2 parents b54d5d0 + 6c7b13a commit b38af47
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,23 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-13, macos-14]
pyver: [cp36, cp37, cp38, cp39, cp310, cp311, cp312, cp313, pp38, pp39,pp310]
exclude:
# excludes
- os: macos-14
pyver: cp36
- os: macos-14
pyver: cp37
- os: windows-latest
pyver: pp38
- os: windows-latest
pyver: pp39
- os: windows-latest
pyver: pp310
- os: windows-latest
pyver: cp36
- os: windows-latest
pyver: cp37

steps:
- uses: actions/checkout@v4
Expand All @@ -33,10 +50,11 @@ jobs:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto64 aarch64
CIBW_BUILD: ${{matrix.pyver}}-*

- uses: actions/upload-artifact@v4
with:
name: python-wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}
name: python-wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}-${{matrix.pyver}}
path: ./wheelhouse/*.whl

build_sdist:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyrustaudit
version = 0.0.6
version = 0.0.8
author = Mike Moore
author_email = z_z_zebra@yahoo.com
license = MIT
Expand Down

0 comments on commit b38af47

Please sign in to comment.