link to python on mac #138
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: Wheels | |
on: | |
workflow_dispatch: | |
push: | |
release: | |
types: [ published ] | |
jobs: | |
build_wheels: | |
name: Build wheels for ${{ matrix.build }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# macos-13 is an intel runner, macos-14 is apple silicon | |
# - os: macos-13 | |
# build: cp38-macosx_x86_64 | |
# target: 13.0 | |
# - os: macos-13 | |
# build: cp39-macosx_x86_64 | |
# target: 13.0 | |
# - os: macos-13 | |
# build: cp310-macosx_x86_64 | |
# target: 13.0 | |
# - os: macos-13 | |
# build: cp311-macosx_x86_64 | |
# target: 13.0 | |
- os: macos-13 | |
build: cp312-macosx_x86_64 | |
python: '3.12' | |
target: 13.0 | |
# - os: macos-14 | |
# build: cp39-macosx_arm64 | |
# target: 14.0 | |
# - os: macos-14 | |
# build: cp310-macosx_arm64 | |
# target: 14.0 | |
# - os: macos-14 | |
# build: cp311-macosx_arm64 | |
# target: 14.0 | |
- os: macos-14 | |
build: cp312-macosx_arm64 | |
python: '3.12' | |
target: 14.0 | |
# - os: ubuntu-latest | |
# build: cp38-manylinux_x86_64 | |
# - os: ubuntu-latest | |
# build: cp39-manylinux_x86_64 | |
# - os: ubuntu-latest | |
# build: cp310-manylinux_x86_64 | |
# - os: ubuntu-latest | |
# build: cp311-manylinux_x86_64 | |
- os: ubuntu-latest | |
build: cp312-manylinux_x86_64 | |
steps: | |
- name: Set macOS deployment target | |
if: runner.os == 'macOS' | |
run: echo "MACOSX_DEPLOYMENT_TARGET=${{ matrix.target }}" >> $GITHUB_ENV | |
# missing build tools on some macos runners | |
- name: Install macOS build dependencies | |
if: runner.os == 'macOS' | |
run: brew install automake libtool cmake | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.20.0 | |
env: | |
CIBW_BUILD: ${{ matrix.build }} | |
CIBW_BEFORE_ALL_LINUX: yum install -y bzip2-devel flac-devel netcdf-devel | |
CIBW_BEFORE_ALL_MACOS: brew install bzip2 flac netcdf | |
CIBW_BEFORE_BUILD: ./deps/install_boost.sh | |
CIBW_REPAIR_WHEEL_COMMAND_MACOS: > | |
DYLD_LIBRARY_PATH=$PWD/deps/lib delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} -e Framework | |
CIBW_BUILD_VERBOSITY: 1 | |
CIBW_ENVIRONMENT: > | |
CMAKE_BUILD_PARALLEL_LEVEL=4 CMAKE_PREFIX_PATH=$PWD/deps | |
CIBW_TEST_SKIP: "*-macosx_*" | |
CIBW_TEST_COMMAND: ctest --test-dir {package}/build --output-on-failure | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheel-${{ matrix.build }} | |
path: ./wheelhouse/spt3g*.whl | |
- name: Setup python | |
if: runner.os == 'macOS' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install package | |
if: runner.os == 'macOS' | |
run: | | |
pip install pytest healpy | |
pip install ./wheelhouse/spt3g*.whl | |
- name: Run tests | |
if: runner.os == 'macOS' | |
run: ctest --test-dir ./build --output-on-failure | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Build sdist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-sdist | |
path: dist/*.tar.gz | |
upload_pypi: | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
environment: pypi | |
permissions: | |
id-token: write | |
if: github.event_name == 'release' && github.event.action == 'published' | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
# unpacks all CIBW artifacts into dist/ | |
pattern: cibw-* | |
path: dist | |
merge-multiple: true | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |