Skip to content

Fix regression in C++98 compilation. #112

Fix regression in C++98 compilation.

Fix regression in C++98 compilation. #112

Workflow file for this run

name: CI tests
on:
- push
- pull_request
jobs:
build:
name: clasp tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
build_threads: ['On']
build_type: ['Debug']
include:
- os: 'ubuntu-latest'
build_threads: 'On'
generator: 'Ninja'
- os: 'macos-latest'
generator: 'Ninja'
- os: 'windows-latest'
generator: 'Visual Studio 17 2022'
- os: 'ubuntu-latest'
build_threads: 'Off'
generator: 'Ninja'
build_type: 'Debug'
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: setup (ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run:
sudo apt install ninja-build
- name: setup (macos)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew update
brew install ninja
- name: Configure
run: >
cmake
-G "${{ matrix.generator }}"
-B "${{github.workspace}}/build"
-DCMAKE_BUILD_TYPE="${{matrix.build_type}}"
-DCLASP_BUILD_TESTS="On"
-DCLASP_BUILD_WITH_THREADS="${{matrix.build_threads}}"
-DLIB_POTASSCO_BUILD_TESTS="On"
-DCMAKE_CXX_STANDARD="14"
- name: Build
run: >
cmake
--build "${{github.workspace}}/build"
--config "${{matrix.build_type}}"
- name: Test
working-directory: ${{github.workspace}}/build
run: >
ctest
-C "${{matrix.build_type}}"