Create initial workflow for cibuildwheel

release/4.3a0
Yashas Ambati 2025-02-19 22:51:52 -05:00
parent 6b73f3efdf
commit ae433fbe03
4 changed files with 89 additions and 1 deletions

53
.github/workflows/build-cibw.yml vendored Normal file
View File

@ -0,0 +1,53 @@
name: Build Wheels (cibuildwheel)
on: [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
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: 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 .. -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_ARCHS: all
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 {project}/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

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
/build*
/build
/debug*
.idea
*.pyc

View File

@ -0,0 +1,7 @@
#!/bin/bash
set -e
set -x
python -m pip install cibuildwheel
python -m cibuildwheel build/python --output-dir wheelhouse

View File

@ -0,0 +1,28 @@
#!/bin/bash
set -e
set -x
PYTHON_VERSION="$1"
PROJECT_DIR="$2"
export PYTHON="python${PYTHON_VERSION}"
rm -rf /build/python
export CMAKE_GENERATOR=Ninja
cmake $PROJECT_DIR \
-B build \
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} \
-DGTSAM_BUILD_TESTS=OFF \
-DGTSAM_BUILD_UNSTABLE=${GTSAM_BUILD_UNSTABLE:-ON} \
-DGTSAM_USE_QUATERNIONS=OFF \
-DGTSAM_WITH_TBB=${GTSAM_WITH_TBB:-OFF} \
-DGTSAM_BUILD_EXAMPLES_ALWAYS=OFF \
-DGTSAM_BUILD_WITH_MARCH_NATIVE=OFF \
-DGTSAM_BUILD_PYTHON=ON \
-DGTSAM_UNSTABLE_BUILD_PYTHON=${GTSAM_BUILD_UNSTABLE:-ON} \
-DGTSAM_PYTHON_VERSION=$PYTHON_VERSION \
-DPYTHON_EXECUTABLE:FILEPATH=$(which $PYTHON) \
-DGTSAM_ALLOW_DEPRECATED_SINCE_V43=OFF \
-DCMAKE_INSTALL_PREFIX=$PROJECT_DIR/gtsam_install