Add constrained multitag example #1638
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 Python | |
on: [pull_request, push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-wheel: | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Windows x86_64 | |
os: windows-2022 | |
version: "3.9" | |
cmake-env: | |
- name: Windows x86_64 | |
os: windows-2022 | |
version: "3.10" | |
cmake-env: | |
- name: Windows x86_64 | |
os: windows-2022 | |
version: "3.11" | |
cmake-env: | |
- name: Windows x86_64 | |
os: windows-2022 | |
version: "3.12" | |
cmake-env: | |
- name: Windows x86_64 | |
os: windows-2022 | |
version: "3.13" | |
cmake-env: | |
- name: Linux x86_64 | |
os: ubuntu-24.04 | |
version: "3.9" | |
cmake-env: | |
- name: Linux x86_64 | |
os: ubuntu-24.04 | |
version: "3.10" | |
cmake-env: | |
- name: Linux x86_64 | |
os: ubuntu-24.04 | |
version: "3.11" | |
cmake-env: | |
- name: Linux x86_64 | |
os: ubuntu-24.04 | |
version: "3.12" | |
cmake-env: | |
- name: Linux x86_64 | |
os: ubuntu-24.04 | |
version: "3.13" | |
cmake-env: | |
- name: Linux aarch64 | |
os: ubuntu-24.04-arm | |
version: "3.9" | |
cmake-env: | |
- name: Linux aarch64 | |
os: ubuntu-24.04-arm | |
version: "3.10" | |
cmake-env: | |
- name: Linux aarch64 | |
os: ubuntu-24.04-arm | |
version: "3.11" | |
cmake-env: | |
- name: Linux aarch64 | |
os: ubuntu-24.04-arm | |
version: "3.12" | |
cmake-env: | |
- name: Linux aarch64 | |
os: ubuntu-24.04-arm | |
version: "3.13" | |
cmake-env: | |
- name: macOS universal | |
os: macOS-14 | |
version: "3.10" | |
cmake-env: _PYTHON_HOST_PLATFORM=macosx_14_0_universal2 ARCHFLAGS="-arch x86_64 -arch arm64" MACOSX_DEPLOYMENT_TARGET=14.0 | |
- name: macOS universal | |
os: macOS-14 | |
version: "3.11" | |
cmake-env: _PYTHON_HOST_PLATFORM=macosx_14_0_universal2 ARCHFLAGS="-arch x86_64 -arch arm64" MACOSX_DEPLOYMENT_TARGET=14.0 | |
- name: macOS universal | |
os: macOS-14 | |
version: "3.12" | |
cmake-env: _PYTHON_HOST_PLATFORM=macosx_14_0_universal2 ARCHFLAGS="-arch x86_64 -arch arm64" MACOSX_DEPLOYMENT_TARGET=14.0 | |
- name: macOS universal | |
os: macOS-14 | |
version: "3.13" | |
cmake-env: _PYTHON_HOST_PLATFORM=macosx_14_0_universal2 ARCHFLAGS="-arch x86_64 -arch arm64" MACOSX_DEPLOYMENT_TARGET=14.0 | |
name: ${{ matrix.version }} ${{ matrix.name }} wheel | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Make GCC 14 the default toolchain (Linux) | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 200 | |
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 200 | |
- run: sudo xcode-select -switch /Applications/Xcode_15.3.app | |
if: startsWith(matrix.os, 'macOS') | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.version }} | |
- run: pip install typing_extensions | |
if: matrix.version == '3.9' || matrix.version == '3.10' | |
- run: python3 ./tools/update_version.py | |
- run: pip3 install build pytest | |
- run: ${{ matrix.cmake-env }} python3 -m build --wheel | |
- run: pip3 install dist/sleipnirgroup_jormungandr-*.whl | |
shell: bash | |
- run: pytest | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.version }} ${{ matrix.name }} wheel | |
path: dist | |
build-sdist: | |
timeout-minutes: 10 | |
name: sdist | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- run: python3 ./tools/update_version.py | |
- run: pip3 install build | |
- run: python3 -m build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: sdist | |
path: dist | |
pypi-publish: | |
name: Upload release to PyPI | |
runs-on: ubuntu-24.04 | |
needs: [build-wheel, build-sdist] | |
if: github.repository_owner == 'SleipnirGroup' && github.ref == 'refs/heads/main' | |
environment: | |
name: pypi | |
url: https://pypi.org/p/sleipnirgroup-jormungandr | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
pattern: '* wheel' | |
merge-multiple: true | |
- uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
pattern: 'sdist' | |
merge-multiple: true | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |