Skip to content

Pre 1.0.0 fixes and improvements #87

Pre 1.0.0 fixes and improvements

Pre 1.0.0 fixes and improvements #87

name: c++ build and test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CTEST_OUTPUT_ON_FAILURE: 1
# CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
jobs:
build:
runs-on: ubuntu-latest
container:
image: eicdev/tdis-pre
steps:
- uses: actions/checkout@v4
# - uses: actions/cache@v3
# with:
# path: "**/cpm_modules"
# key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: configure
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=Debug
- name: build
run: cmake --build build -j4