Add support for pyproject.toml
#127
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: Build and publish package to PyPI | |
name: Test building wheels | |
# Temporarily disable publishing to PyPI and enable | |
# building wheels on pull requests | |
on: | |
release: | |
types: [published] | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
# target: | |
# description: 'Deployment target. Can be "pypi" or "testpypi"' | |
# default: "pypi" | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: false | |
jobs: | |
build_windows_wheels: | |
name: Build wheels on windows-latest | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Clone pybind11 repo (no history) | |
run: git clone --depth 1 --branch v2.10.4 https://github.com/pybind/pybind11.git | |
# remove when a new vcpkg version is released | |
- name: Install the latest commit of vcpkg on windows | |
run: | | |
cd C:\ | |
rm -r -fo 'C:\vcpkg' | |
git clone https://github.com/microsoft/vcpkg | |
cd vcpkg | |
.\bootstrap-vcpkg.bat | |
- name: Cache packages installed through vcpkg on windows | |
uses: actions/cache@v3 | |
env: | |
cache-name: vckpg_binary_cache | |
with: | |
path: C:\Users\runneradmin\AppData\Local\vcpkg\archives | |
key: ${{ runner.os }}-build-VS2022-${{ env.cache-name }}-${{ hashFiles('vcpkg*.json') }} | |
# Enable tmate debugging of manually-triggered workflows if the input option was provided | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
- name: Build 64 bits wheels on Windows | |
run: pipx run cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_ENVIRONMENT: 'PYBAMM_USE_VCPKG=ON VCPKG_ROOT_DIR=C:\vcpkg VCPKG_DEFAULT_TRIPLET=x64-windows-static-md VCPKG_FEATURE_FLAGS=manifests,registries CMAKE_GENERATOR="Visual Studio 17 2022" CMAKE_GENERATOR_PLATFORM=x64' | |
CIBW_ARCHS: "AMD64" | |
- name: Upload windows wheels | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows_wheels | |
path: ./wheelhouse/*.whl | |
if-no-files-found: error | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Clone pybind11 repo (no history) | |
run: git clone --depth 1 --branch v2.11.1 https://github.com/pybind/pybind11.git | |
# sometimes gfortran cannot be found, so reinstall gcc just to be sure | |
- name: Install SuiteSparse and SUNDIALS on macOS | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew update | |
brew install gcc gfortran libomp graphviz openblas | |
brew reinstall gcc | |
python -m pip install cmake wget | |
python scripts/install_KLU_Sundials.py | |
- name: Build wheels on ${{ matrix.os }} | |
run: pipx run cibuildwheel --output-dir wheelhouse | |
env: | |
# TODO: openblas no longer available on centos 7 i686 image, use blas instead for now | |
CIBW_BEFORE_ALL_LINUX: > | |
yum -y install blas-devel lapack-devel && | |
bash build_manylinux_wheels/install_sundials.sh 5.8.1 6.5.0 | |
CIBW_BEFORE_BUILD_LINUX: > | |
python -m pip install cmake casadi numpy && | |
scripts/fix_casadi_rpath_linux.sh | |
# override; point to casadi install path so that it can be found by the repair command | |
CIBW_REPAIR_WHEEL_COMMAND_LINUX: > | |
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:$(python -c 'import casadi; print(casadi.__path__[0])')" auditwheel repair -w {dest_dir} {wheel} | |
CIBW_BEFORE_BUILD_MACOS: > | |
python -m pip | |
install cmake casadi numpy && | |
python scripts/fix_casadi_rpath_mac.py && scripts/fix_suitesparse_rpath_mac.sh | |
# got error "re.error: multiple repeat at position 104" on python 3.7 when --require-archs added, so remove | |
# it for mac | |
CIBW_REPAIR_WHEEL_COMMAND_MACOS: > | |
delocate-listdeps {wheel} && | |
delocate-wheel -v -w {dest_dir} {wheel} | |
CIBW_SKIP: "pp* *musllinux*" | |
- name: Upload wheels | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheels | |
path: ./wheelhouse/*.whl | |
if-no-files-found: error | |
build_sdist: | |
name: Build sdist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: pip install wheel | |
- name: Build sdist | |
run: python setup.py sdist --formats=gztar | |
- name: Upload sdist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: sdist | |
path: ./dist/*.tar.gz | |
if-no-files-found: error | |
# publish_pypi: | |
# name: Upload package to PyPI | |
# needs: [build_wheels, build_windows_wheels, build_sdist] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Download all artifacts | |
# uses: actions/download-artifact@v3 | |
# - name: Move all package files to files/ | |
# run: | | |
# mkdir files | |
# mv windows_wheels/* wheels/* sdist/* files/ | |
# - name: Publish on PyPI | |
# if: | | |
# github.event.inputs.target == 'pypi' || | |
# (github.event-name == 'push' && github.ref == 'refs/heads/main') | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# user: __token__ | |
# password: ${{ secrets.PYPI_TOKEN }} | |
# packages_dir: files/ | |
# - name: Publish on TestPyPI | |
# if: github.event.inputs.target == 'testpypi' | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# user: __token__ | |
# password: ${{ secrets.TESTPYPI_TOKEN }} | |
# packages-dir: files/ | |
# repository-url: https://test.pypi.org/legacy/ |