Working on Github Actions

This commit is contained in:
Daniel Chappuis 2021-08-09 21:22:39 +02:00
parent 9ec054661c
commit 067c204a25

View File

@ -158,26 +158,6 @@ jobs:
double_precision: false,
coverage: false
}
- {
name: "MacOS / GCC (Debug, Single Precision)",
os: macos-latest,
build_type: "Debug",
cc: "gcc",
cxx: "g++",
generators: "Ninja",
double_precision: false,
coverage: false
}
- {
name: "MacOS / GCC (Release, Single Precision)",
os: macos-latest,
build_type: "Release",
cc: "gcc",
cxx: "g++",
generators: "Ninja",
double_precision: false,
coverage: false
}
- {
name: "Code Coverage",
os: ubuntu-latest,
@ -253,10 +233,16 @@ jobs:
shell: bash
run: cmake --install build/
- name: Unit Tests
- name: Unit Tests (Linux / MacOS)
if: ${{ !startsWith(matrix.config.os, 'windows') }}
shell: bash
run: ./build/test/tests
- name: Unit Tests (Wndows)
if: ${{ startsWith(matrix.config.os, 'windows') }}
shell: bash
run: "./build/test/${{ matrix.config.build_type }}/tests.exe"
- name: Build and Run Hello World
if: ${{ !matrix.config.coverage }}
shell: bash