Skip to content

Using cibuildwheel

Using cibuildwheel #69

Workflow file for this run

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: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
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_BEFORE_ALL_LINUX: yum install -y libatomic
- 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 }}