Using cibuildwheel #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: libcosimpy CI | |
# This workflow is triggered on pushes to the repository. | |
on: [push, workflow_dispatch] | |
jobs: | |
# test: | |
# name: Tests | |
# runs-on: ${{ matrix.platform }} | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# platform: [ 'windows-latest', 'ubuntu-latest' ] | |
# python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] | |
# timeout-minutes: 35 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-python@v4 | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# - name: 'Run test' | |
# run: | | |
# pip install . | |
# pip install pytest==7.2.2 | |
# pytest . | |
build: | |
name: build | |
# needs: | |
# - test | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ 'windows-latest', 'ubuntu-latest' ] | |
python-version: [ 'cp38', 'cp39', 'cp310', 'cp311', 'cp312' ] | |
timeout-minutes: 35 | |
env: | |
CONAN_REVISIONS_ENABLED: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install build and twine | |
run: pip install build twine | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_BUILD: ${{ matrix.python-version }}-win_amd64 ${{ matrix.python-version }}-manylinux_x86_64 | |
- name: Build source | |
run: python -m build --sdist --outdir wheelhouse | |
- name: Run twine check | |
run: twine check --strict wheelhouse/* | |
- uses: actions/upload-artifact@v3 | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
name: Upload artifact (source) | |
with: | |
name: source | |
path: ./wheelhouse/*.tar.gz | |
- uses: actions/upload-artifact@v3 | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
name: Upload artifact (wheels) | |
with: | |
name: wheels | |
path: ./wheelhouse/*.whl | |
publish: | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: wheels | |
path: ./dist/ | |
- uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |