Fixing metadata and readding Windows to CI #36
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
# This file is autogenerated by maturin v1.7.0 | |
# To update, run | |
# | |
# maturin generate-ci github | |
# | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
run: pipx install poetry | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
cache: "poetry" | |
- name: pytest | |
run: | | |
pipx ensurepath | |
poetry install --with dev | |
poetry run maturin build --out dist | |
poetry run pip install geohash_polygon --find-links dist --force-reinstall | |
poetry run pytest | |
linux: | |
needs: [tests] | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
matrix: | |
platform: | |
- runner: ubuntu-latest | |
target: x86_64 | |
- runner: ubuntu-latest | |
target: x86 | |
- runner: ubuntu-latest | |
target: aarch64 | |
- runner: ubuntu-latest | |
target: armv7 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.platform.target }} | |
args: --release --out dist | |
sccache: 'true' | |
manylinux: auto | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-linux-${{ matrix.platform.target }} | |
path: dist | |
- name: pytest | |
run: | | |
set -e | |
python3 -m venv .venv | |
source .venv/bin/activate | |
pip install geohash_polygon --find-links dist --force-reinstall | |
pip install pytest | |
pytest | |
musllinux: | |
needs: [tests] | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
matrix: | |
platform: | |
- runner: ubuntu-latest | |
target: x86_64 | |
- runner: ubuntu-latest | |
target: x86 | |
- runner: ubuntu-latest | |
target: aarch64 | |
- runner: ubuntu-latest | |
target: armv7 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.platform.target }} | |
args: --release --out dist | |
sccache: 'true' | |
manylinux: musllinux_1_2 | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-musllinux-${{ matrix.platform.target }} | |
path: dist | |
windows: | |
needs: [tests] | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
matrix: | |
platform: | |
- runner: windows-latest | |
target: x64 | |
- runner: windows-latest | |
target: x86 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
architecture: ${{ matrix.platform.target }} | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.platform.target }} | |
args: --release --out dist | |
sccache: 'true' | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-windows-${{ matrix.platform.target }} | |
path: dist | |
macos: | |
needs: [tests] | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
matrix: | |
platform: | |
- runner: macos-12 | |
target: x86_64 | |
- runner: macos-14 | |
target: aarch64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.platform.target }} | |
args: --release --out dist | |
sccache: 'true' | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-macos-${{ matrix.platform.target }} | |
path: dist | |
- name: pytest | |
run: | | |
set -e | |
python3 -m venv .venv | |
source .venv/bin/activate | |
pip install geohash_polygon --find-links dist --force-reinstall | |
pip install pytest | |
pytest | |
sdist: | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build sdist | |
uses: PyO3/maturin-action@v1 | |
with: | |
command: sdist | |
args: --out dist | |
- name: Upload sdist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-sdist | |
path: dist | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: "startsWith(github.ref, 'refs/tags/')" | |
needs: [linux, musllinux, macos, windows, sdist] | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-macos-x86_64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-macos-aarch64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-linux-x86_64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-linux-x86 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-linux-aarch64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-linux-armv7 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-musllinux-x86_64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-musllinux-x86 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-musllinux-aarch64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-musllinux-armv7 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-windws-x86 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-windws-x64 | |
path: dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheels-sdist | |
path: dist | |
- name: Publish release distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |