Merge pull request #8 from chrjabs/docs #29
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: Linux Build-Test | |
on: | |
push: | |
branches: [ master ] | |
tags: 'v*.*.*' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
build_type: [Release] | |
c_compiler: [gcc] | |
cpp_compiler: [g++] | |
steps: | |
- uses: actions/checkout@v3 | |
# Add ssh-key to clone repository cadical | |
- uses: webfactory/ssh-agent@v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Install libarchive | |
run: | | |
sudo apt install libarchive-dev | |
shell: bash | |
- name: Set reusable strings | |
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file. | |
id: strings | |
shell: bash | |
run: | | |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" | |
- name: Configure CMake | |
run: > | |
cmake -B ${{ steps.strings.outputs.build-output-dir }} | |
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} | |
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
-S ${{ github.workspace }} | |
- name: Build | |
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifact | |
path: ${{ steps.strings.outputs.build-output-dir }} | |
- name: Run tests | |
working-directory: ${{ steps.strings.outputs.build-output-dir }} | |
run: ctest --build-config ${{ matrix.build_type }} | |
# Steps from here on are only triggered for releases | |
# Set version = release-tag in setup.py | |
- name: Change version in setup.py | |
working-directory: ${{ github.workspace }} | |
run: | | |
PYPI_VERSION=$(echo ${{ github.ref_name }} | sed 's/[a-zA-Z]*//g') | |
sed -i "s/version=\"[^\"]*\"/version=\"$PYPI_VERSION\"/" setup.py | |
if: startsWith(github.ref_name, 'v') | |
# Build wheels using a docker image and different versions of python | |
- name: Build manylinux wheels | |
working-directory: ${{ github.workspace }} | |
run: | | |
chmod a+x build-wheels.sh | |
mkdir wheelhouse | |
export DOCKER_IMAGE=quay.io/pypa/manylinux_2_28_x86_64 | |
docker pull $DOCKER_IMAGE | |
docker run --rm -v ${{ github.workspace }}:/io $DOCKER_IMAGE /io/build-wheels.sh | |
# Trigger only for releases | |
if: startsWith(github.ref_name, 'v') | |
- name: Publish package to PyPI | |
shell: bash | |
run: | | |
pip install twine | |
export TWINE_USERNAME="__token__" | |
export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}" | |
twine upload --skip-existing --repository-url https://upload.pypi.org/legacy/ wheelhouse/* --verbose | |
# Trigger only for releases | |
if: startsWith(github.ref_name, 'v') | |