91 lines
2.6 KiB
YAML
91 lines
2.6 KiB
YAML
name: Build Wheels (cibuildwheel)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build_wheels:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
python_version: "3.10"
|
|
cibw_python_version: 310
|
|
platform_id: manylinux_x86_64
|
|
manylinux_image: manylinux2014
|
|
|
|
- os: ubuntu-24.04-arm
|
|
python_version: "3.10"
|
|
cibw_python_version: 310
|
|
platform_id: manylinux_aarch64
|
|
manylinux_image: manylinux2014
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python ${{ matrix.python_version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python_version }}
|
|
|
|
- name: Set Develop Flag
|
|
run: |
|
|
echo "DEVELOP=1" >> $GITHUB_ENV
|
|
echo "COMMIT_HASH=$(git rev-parse --short=7 "$GITHUB_SHA")" >> $GITHUB_ENV
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
sudo apt-get install -y wget libicu-dev python3-pip python3-setuptools libboost-all-dev ninja-build
|
|
python3 -m pip install -r python/dev_requirements.txt
|
|
|
|
- name: Run CMake
|
|
run: |
|
|
cmake . -B build -DGTSAM_BUILD_PYTHON=1 -DGTSAM_PYTHON_VERSION=${{ matrix.python_version }}
|
|
|
|
- name: Build and test wheels
|
|
env:
|
|
CIBW_BUILD: cp${{ matrix.cibw_python_version }}-${{ matrix.platform_id }}
|
|
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_image }}
|
|
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.manylinux_image }}
|
|
CIBW_ARCHS: all
|
|
CIBW_ENVIRONMENT_PASS_LINUX: DEVELOP COMMIT_HASH
|
|
|
|
CIBW_BUILD_FRONTEND: "build"
|
|
CIBW_BEFORE_ALL: bash {project}/build_tools/wheels/cibw_before_all.sh ${{ matrix.python_version }} {project}
|
|
|
|
CIBW_BUILD_VERBOSITY: 1
|
|
|
|
run: bash build_tools/wheels/build_wheels.sh
|
|
|
|
- name: Store artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: cibw-wheels-cp${{ matrix.cibw_python_version }}-${{ matrix.platform_id }}
|
|
path: wheelhouse/*.whl
|
|
|
|
upload_all:
|
|
name: Upload All
|
|
needs: build_wheels
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
steps:
|
|
- name: Download Artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
path: dist/
|
|
merge-multiple: true
|
|
|
|
- name: Publish to TestPyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
verbose: true
|
|
packages-dir: dist/
|
|
repository-url: https://test.pypi.org/legacy/
|