Skip to content

WIP: cross compile for MacOS targets #165

WIP: cross compile for MacOS targets

WIP: cross compile for MacOS targets #165

Workflow file for this run

name: python
on: [push, pull_request, workflow_dispatch]
jobs:
build_wheels:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ubuntu-latest

Check failure on line 10 in .github/workflows/python.yaml

View workflow run for this annotation

GitHub Actions / python

Invalid workflow file

The workflow is not valid. .github/workflows/python.yaml (Line: 10, Col: 13): Unexpected value 'ubuntu-latest'
target: [x86_64-unknown-linux-gnu, x86_64-apple-darwin, aarch64-apple-darwin]
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
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: --zig --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
# if: ${{ matrix.target }} == 'x86_64-unknown-linux-gnu'
# 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
- if: github.ref == 'refs/heads/master'
name: update prerelease tag
uses: EndBug/[email protected]
with:
ref: "prerelease"
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
makeLatest: true
artifacts: "wheels/*"
publish:
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 *