Skip to content

Adding paracl spec

Adding paracl spec #96

Workflow file for this run

name: C++ masters course pre-commit and post-push
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
main:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Install google test and boost, also install g++-12 (for atomic shared pointers)
run: sudo apt-get install libgtest-dev googletest googletest-tools google-mock libboost-dev g++-12
- name: Checkout repository
uses: actions/checkout@v3
- name: CMake release config
run: cmake -S . -B build -DCMAKE_CXX_COMPILER=g++-12 -DCMAKE_BUILD_TYPE=Release
- name: CMake release build
run: cmake --build build
- name: CMake release test
run: env CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test
- name: CMake debug config
run: cmake -S . -B debug -DCMAKE_CXX_COMPILER=g++-12 -DCMAKE_BUILD_TYPE=Release
- name: CMake debug build
run: cmake --build debug
- name: CMake debug test
run: env CTEST_OUTPUT_ON_FAILURE=1 cmake --build debug --target test