Skip to content

Commit

Permalink
Issue #12 restored full build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Feb 22, 2024
1 parent b7d26a2 commit 12ef8f9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-ver: ['3.12']
python-ver: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest, macos-latest]
experimental: [false]

Expand Down Expand Up @@ -38,6 +38,7 @@ jobs:
cmake --build .
cd ../
python.exe -m build
python -m twine upload -u __token__ -p ${{secrets.PYPI_API_TOKEN}} dist/* --skip-existing
rm -r build
rm -r install
Expand All @@ -51,6 +52,7 @@ jobs:
cmake --build .
cd ../
python.exe -m build
python -m twine upload -u __token__ -p ${{secrets.PYPI_API_TOKEN}} dist/* --skip-existing
rm -r build
rm -r install
Expand All @@ -64,6 +66,17 @@ jobs:
cd ..
python -m build
- name: build ubuntu manylinux
if: matrix.os == 'ubuntu-latest'
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'

- name: upload manylinux
if: matrix.os == 'ubuntu-latest'
run: |
python -m twine upload -u __token__ -p ${{secrets.PYPI_API_TOKEN}} dist/*-manylinux*.whl --skip-existing
- name: build macos
if: matrix.os == 'macos-latest'
run: |
Expand All @@ -73,4 +86,5 @@ jobs:
make
cd ..
python -m build
python -m twine upload -u __token__ -p ${{secrets.PYPI_API_TOKEN}} dist/* --skip-existing

0 comments on commit 12ef8f9

Please sign in to comment.