Skip to content

Merge pull request #1 from GordonSmith/REFACTOR #33

Merge pull request #1 from GordonSmith/REFACTOR

Merge pull request #1 from GordonSmith/REFACTOR #33

Workflow file for this run

name: Install
on:
push:
branches:
- trunk
- main
pull_request:
branches:
- trunk
- main
env:
CTEST_OUTPUT_ON_FAILURE: 1
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/cache@v3
with:
path: "**/cpm_modules"
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: install dependencies
run: |
sudo apt-get install ninja-build
- name: build and install library
run: |
cmake -G Ninja -S . -B build -DCMAKE_BUILD_TYPE=Release
sudo cmake --build build --target install
rm -rf build
- name: configure
run: cmake -Stest -Bbuild -DTEST_INSTALLED_VERSION=ON
- name: build
run: cmake --build build --config Debug -j4
- name: test
run: |
cd build
ctest --build-config Debug