Skip to content

Merge pull request #34 from n0-computer/arqu/moar_platforms #40

Merge pull request #34 from n0-computer/arqu/moar_platforms

Merge pull request #34 from n0-computer/arqu/moar_platforms #40

Workflow file for this run

name: Python Wheels
on:
push:
branches:
- main
pull_request:
jobs:
manylinux2014:
runs-on: ${{ matrix.runner }}
container: ${{ matrix.container }}
strategy:
matrix:
name: [ubuntu-latest, ubuntu-arm-latest]
include:
- name: ubuntu-latest
python: 3.11
os: ubuntu-latest
release-os: linux
release-arch: amd64
container: quay.io/pypa/manylinux2014_x86_64
runner: [ubuntu-latest]
- name: ubuntu-arm-latest
python: 3.11
os: ubuntu-latest
release-os: linux
release-arch: aarch64
container: quay.io/pypa/manylinux2014_aarch64
runner: [self-hosted, linux, ARM64]
steps:
- uses: actions/checkout@v3
- name: Install stable rust
run: curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
- name: Install maturin & uniffi-bindgen
run: |
/opt/python/cp311-cp311/bin/pip install maturin uniffi-bindgen
- name: Build wheel
run: |
source $HOME/.cargo/env
PATH=/opt/python/cp311-cp311/bin:$PATH
export PATH
maturin build --release --manylinux 2014
- name: Upload wheel
uses: actions/upload-artifact@v3
with:
name: wheels-manylinux2014
path: target/wheels/*.whl
osx:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
name: [macOS-latest, macOS-arm-latest]
include:
- name: macOS-latest
python: 3.11
os: macOS-latest
release-os: darwin
release-arch: x86_64
runner: [macOS-latest]
- name: macOS-arm-latest
python: 3.11
os: macOS-latest
release-os: darwin
release-arch: aarch64
runner: [self-hosted, macOS, ARM64]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install maturin & uniffi-bindgen
run: |
pip install maturin uniffi-bindgen
- name: Build wheel
run: |
maturin build --release
- name: Upload wheel
uses: actions/upload-artifact@v3
with:
name: wheels-osx
path: target/wheels/*.whl
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install maturin & uniffi-bindgen
run: |
pip install maturin uniffi-bindgen
- name: Build wheel
run: |
maturin build --release
- name: Upload wheel
uses: actions/upload-artifact@v3
with:
name: wheels-windows
path: target/wheels/*.whl