Add arm64 runner. #204
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: python | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build_wheels: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
target: x86_64 | |
- os: macos-13 | |
target: x86_64 | |
- os: macos-14 | |
target: arm64 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: symlink gfortran (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
ln -s /usr/local/bin/gfortran-12 /usr/local/bin/gfortran # MacOS 13 | |
ln -s /opt/homebrew/bin/gfortran-12 /usr/local/bin/gfortran # MacOS 14 | |
gfortran --version | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: build wheel | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
args: --release --out dist | |
manylinux: auto | |
sccache: true | |
- name: delocate wheel (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
pip install delocate | |
delocate-wheel -v dist/*.whl | |
- name: install built wheel | |
run: | | |
pip install optik-py --no-index --find-links dist | |
python -c "import optik" | |
- name: upload wheels | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheels | |
path: dist | |
sdist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build sdist | |
uses: PyO3/maturin-action@v1 | |
with: | |
command: sdist | |
args: --out dist --manifest-path crates/optik-py/Cargo.toml | |
- name: upload sdist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheels | |
path: dist | |
prerelease: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: push-${{ github.ref_name }}-prerelease | |
cancel-in-progress: true | |
needs: [build_wheels, sdist] | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: wheels | |
path: wheels | |
- name: GitHub release | |
uses: ncipollo/[email protected] | |
with: | |
prerelease: true | |
tag: "prerelease" | |
name: "Development Build" | |
allowUpdates: true | |
removeArtifacts: true | |
replacesArtifacts: true | |
artifacts: "wheels/*" | |
public: | |
name: publish to PyPI | |
runs-on: ubuntu-latest | |
if: "startsWith(github.ref, 'refs/tags/')" | |
needs: [build_wheels, sdist] | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: wheels | |
- uses: PyO3/maturin-action@v1 | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} | |
with: | |
command: upload | |
args: --non-interactive --skip-existing * |