Python implementation #169
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: | |
# skip building wheel for windows as it's not working yet | |
os: [ubuntu-latest, macos-13] #windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Provide gfortran (macOS-13) | |
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-13 /usr/local/bin/gfortran | |
sudo mkdir /usr/local/gfortran | |
sudo ln -s /usr/local/Cellar/gcc@13/*/lib/gcc/13 /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 | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="13.0" | |
CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip | |
# 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@v4 | |
with: | |
name: artifact-wheels-${{ matrix.os }} | |
path: ./wheelhouse/*.whl | |
build_sdist: | |
name: Build π source distribution π¦ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build sdist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: artifact-source | |
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@v4 | |
with: | |
# unpacks default artifact into dist/ | |
# if `name: artifact` is omitted, the action will create extra parent dir | |
path: dist | |
pattern: artifact-* | |
merge-multiple: true | |
- name: Display structure of downloaded files | |
run: ls -R 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 |