Tarina 0.6.4 #66
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
name: Build | |
on: | |
pull_request: | |
types: | |
- opened | |
paths: | |
- 'src/tarina/_op.h' | |
- 'src/tarina/*_c.c' | |
- 'src/tarina/*_c.pyx' | |
release: | |
types: [published] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build_sdist: | |
name: Build sdist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
uses: py-actions/py-dependency-install@v4 | |
with: | |
path: requirements/cython.txt | |
- name: Cythonize | |
run: | | |
make cythonize | |
- name: Build sdist | |
run: | | |
pipx run build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pkg-sdist | |
path: dist/*.tar.gz | |
build_pure_wheel: | |
name: Build pure wheel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
uses: py-actions/py-dependency-install@v4 | |
with: | |
path: requirements/cython.txt | |
- name: Cythonize | |
run: | | |
make cythonize | |
- name: Build wheel | |
run: | | |
export TARINA_NO_EXTENSIONS=1 | |
pipx run build --wheel | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pkg-pure-wheel | |
path: dist/*.whl | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
id: qemu | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Install cython | |
uses: py-actions/py-dependency-install@v4 | |
with: | |
path: requirements/cython.txt | |
- name: Cythonize | |
run: | | |
make cythonize | |
- name: Ensure Macos 13 | |
run: | | |
if [[ "${{ matrix.os }}" -eq "macos-13" ]]; then | |
echo "CIBW_ARCHS_MACOS=x86_64 universal2" >> $GITHUB_ENV | |
else | |
echo "CIBW_ARCHS_MACOS=arm64" >> $GITHUB_ENV | |
fi | |
shell: bash | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.21.3 | |
env: | |
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x | |
CIBW_ARCHS_WINDOWS: auto | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
if: github.event_name != 'pull_request' | |
with: | |
name: pkg-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' | |
needs: [build_sdist, build_pure_wheel, build_wheels] | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
pattern: pkg-* | |
merge-multiple: true | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@v1.12.2 | |
with: | |
verbose: true | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- name: upload release asset | |
run: | | |
gh release upload ${{ github.event.release.tag_name }} dist/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |