Skip to content

WIP github action #8

WIP github action

WIP github action #8

Workflow file for this run

name: Build and test
on:
push:
branches: [ "wip_actions" ]
pull_request:
branches: [ "wip_actions" ]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: MarkusJx/install-boost@v2.4.5
with:
boost_version: 1.83.0
platform_version: 22.04
- uses: actions/checkout@v4
with:
path: ./src
submodules: recursive
- name: build-debug
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_JS=On -DXCMAKE_CLANG_TIDY=On -DXCMAKE_SYSTEM_GTEST=OFF -DXCMAKE_DOXYGEN_WERROR=OFF -DCMAKE_INSTALL_PREFIX=inst -Bbuild src
make -C build install -j$(nproc)
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}