build(deps): bump pypa/cibuildwheel from 2.14.1 to 2.15.0 #66
Workflow file for this run
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: Publish π¦ to PyPI | |
# Build on every branch push, tag push, and pull request change: | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
build_wheels: | |
name: Build π wheels π¦ on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-11] #windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Provide gfortran (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
# https://github.com/actions/virtual-environments/issues/2524 | |
# https://github.com/cbg-ethz/dce/blob/master/.github/workflows/pkgdown.yaml | |
sudo ln -s /usr/local/bin/gfortran-11 /usr/local/bin/gfortran | |
sudo mkdir /usr/local/gfortran | |
sudo ln -s /usr/local/Cellar/gcc@11/*/lib/gcc/11 /usr/local/gfortran/lib | |
gfortran --version | |
- name: Provide gfortran (Windows) | |
if: runner.os == 'Windows' | |
uses: msys2/setup-msys2@v2 | |
- name: Tell distutils to use mingw (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
echo "[build]`ncompiler=mingw32" | Out-File -Encoding ASCII ~/pydistutils.cfg | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
# Disable building for PyPy and 32bit. | |
CIBW_SKIP: pp* *-win32 *-manylinux_i686 | |
# Fix error for python 3.11 on macOS | |
CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib | |
# Package the DLL dependencies in the wheel for windows (done by default for the other platforms). | |
# delvewheel cannot mangle the libraries, stripping does not work. | |
CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel | |
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel show {wheel} && delvewheel repair -w {dest_dir} {wheel} --no-mangle-all" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build_sdist: | |
name: Build π source distribution π¦ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build sdist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz | |
upload_pypi: | |
name: Upload π¦ to PyPI | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'insarlab' && github.event_name == 'push' | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
# unpacks default artifact into dist/ | |
# if `name: artifact` is omitted, the action will create extra parent dir | |
name: artifact | |
path: dist | |
- name: Publish developed version π¦ to Test PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository_url: https://test.pypi.org/legacy/ | |
skip_existing: false | |
verbose: true | |
- name: Publish released version π¦ to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
verbose: true |