build-and-release #25
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: build-and-release | |
on: | |
workflow_dispatch | |
jobs: | |
check_main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release from main | |
if: github.ref == 'refs/heads/main' | |
run: echo '::notice ::Building and uploading release' | |
- name: No release | |
if: github.ref != 'refs/heads/main' | |
run: echo '::warning ::Release can only be run from the main branch!' && exit 1 | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
target: [x86_64, x86, armv7] | |
needs: [check_main] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
args: -i ${{ matrix.python-version }} --release --out dist | |
sccache: 'true' | |
manylinux: auto | |
maturin-version: v1.4.0 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-linux-${{ matrix.target }} | |
path: dist | |
windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
target: [x64, x86] | |
needs: [check_main] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
args: -i ${{ matrix.python-version }} --release --out dist | |
sccache: 'true' | |
maturin-version: v1.4.0 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-windows-${{ matrix.target }} | |
path: dist | |
macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
target: [x86_64, aarch64] | |
needs: [check_main] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
args: -i ${{ matrix.python-version }} --release --out dist | |
sccache: 'true' | |
maturin-version: v1.4.0 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-macos-${{ matrix.target }} | |
path: dist | |
sdist: | |
runs-on: ubuntu-latest | |
needs: [check_main] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build sdist | |
uses: PyO3/maturin-action@v1 | |
with: | |
command: sdist | |
args: --out dist | |
maturin-version: v1.4.0 | |
- name: Upload sdist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-sdist | |
path: dist | |
rust_publish_dry_run: | |
runs-on: ubuntu-latest | |
needs: [check_main] | |
container: rust:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Build docs 📚 | |
run: cargo doc --no-deps | |
# - name: Test publish verbs simulation library | |
# run: cargo publish --dry-run -p verbs-rs | |
# - name: Test publish verbs macros | |
# run: cargo publish --dry-run -p verbs-macros | |
build_docs: | |
runs-on: ubuntu-latest | |
needs: [check_main] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install hatch 🐣 | |
run: pip install hatch | |
- name: Build docs 📚 | |
run: hatch run sphinx:build | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3.0.0 | |
with: | |
path: docs/python/build/html | |
release_rust: | |
runs-on: ubuntu-latest | |
needs: [linux, windows, macos, sdist, build_docs, rust_publish_dry_run] | |
container: rust:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Publish verbs macros | |
run: cargo publish -p verbs-macros --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CARGO_API_KEY }} | |
- name: Publish verbs | |
run: cargo publish -p verbs-rs --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CARGO_API_KEY }} | |
release_python: | |
runs-on: ubuntu-latest | |
needs: [linux, windows, macos, sdist, build_docs, rust_publish_dry_run] | |
environment: | |
name: pypi | |
url: https://pypi.org/p/verbs | |
permissions: | |
id-token: write | |
steps: | |
- name: Download dists | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: wheels-* | |
merge-multiple: true | |
path: dist/ | |
- name: Publish distribution 📦 to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
publish_docs: | |
runs-on: ubuntu-latest | |
needs: [linux, windows, macos, sdist, build_docs, rust_publish_dry_run] | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# Specify runner + deployment step | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |