Add CMake builds to ci.yml

This commit is contained in:
Peter Dimov
2026-04-25 17:56:51 +03:00
parent 660e6fc22c
commit 0dc2921ec2
+62
View File
@@ -246,3 +246,65 @@ jobs:
run: |
cd ../boost-root
b2 -j3 tools/quickbook/test toolset=${{matrix.toolset}} variant=debug,release embed-manifest-via=linker
posix-cmake-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Boost
run: |
echo GITHUB_REPOSITORY: $GITHUB_REPOSITORY
echo GITHUB_BASE_REF: $GITHUB_BASE_REF
echo GITHUB_REF: $GITHUB_REF
REF=${GITHUB_BASE_REF:-$GITHUB_REF}
REF=${REF#refs/heads/}
echo REF: $REF
BOOST_BRANCH=develop && [ "$REF" == "master" ] && BOOST_BRANCH=master || true
echo BOOST_BRANCH: $BOOST_BRANCH
cd ..
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
cp -r $GITHUB_WORKSPACE/* tools/quickbook
git submodule update --init tools/boostdep
python3 tools/boostdep/depinst/depinst.py -X test --git_args "--jobs 3" ../tools/quickbook
./bootstrap.sh
./b2 --prefix=$HOME/.local install
- name: Build Quickbook with CMake
run: |
cmake -S . -B __build__ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/.local
cmake --build __build__ --target install
windows-cmake-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Install Boost
shell: cmd
run: |
echo GITHUB_REPOSITORY: %GITHUB_REPOSITORY%
echo GITHUB_BASE_REF: %GITHUB_BASE_REF%
echo GITHUB_REF: %GITHUB_REF%
if "%GITHUB_BASE_REF%" == "" set GITHUB_BASE_REF=%GITHUB_REF%
set BOOST_BRANCH=develop
for /f %%i in ("%GITHUB_BASE_REF%") do if "%%~nxi" == "master" set BOOST_BRANCH=master
echo BOOST_BRANCH: %BOOST_BRANCH%
cd ..
git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
xcopy /s /e /q %GITHUB_WORKSPACE% tools\quickbook\
git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py -X test --git_args "--jobs 3" ../tools/quickbook
cmd /c bootstrap
b2 install
- name: Build Quickbook with CMake
run: |
cmake -S . -B __build__ -DBoost_ROOT=C:/Boost -DCMAKE_INSTALL_PREFIX=C:/usr/local
cmake --build __build__ --target install --config Release