Skip to content

CD

CD #21

Workflow file for this run

name: CD
on:
push:
tags:
- v*
branches:
- 'main'
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
jobs:
macos:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
target: [x64, aarch64]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
command: build
target: ${{ matrix.target }}
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: macos-wheels-${{ matrix.python-version }}-${{matrix.target}}
path: dist
retention-days: 3
compression-level: 0
windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
target: [x64]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
command: build
target: ${{ matrix.target }}
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: windows-wheels-${{ matrix.python-version }}-${{ matrix.target }}
path: dist
retention-days: 3
compression-level: 0
linux-x86_64:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: x86_64
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build Wheels
uses: PyO3/maturin-action@v1
with:
command: build
target: x86_64
manylinux: manylinux_2_28
before-script-linux: |
yum install -y openssl-devel
export OPENSSL_NO_VENDOR=1
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: linux-wheels-${{ matrix.python-version }}-x86_64
path: dist
retention-days: 3
compression-level: 0
linux-aarch64:
runs-on: ubuntu-24.04-arm
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: aarch64
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build Wheels
uses: PyO3/maturin-action@v1
with:
command: build
target: aarch64
manylinux: manylinux_2_28
args: --release -o dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: linux-wheels-${{ matrix.python-version }}-aarch64
path: dist
retention-days: 3
compression-level: 0
# TODO Add pypy
release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [ macos, linux-x86_64, linux-aarch64, windows ]
steps:
- uses: actions/download-artifact@v4
with:
pattern: '*'
merge-multiple: true
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Publish to PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_TOKEN }}
run: |
pip install --upgrade twine
twine check *
twine upload --skip-existing --verbose *