Working on Github Actions

This commit is contained in:
Daniel Chappuis 2021-08-03 23:02:51 +02:00
parent 5d9fa0ed99
commit 8d59872b09

View File

@ -105,7 +105,7 @@ jobs:
mkdir build
cmake \
-S . \
-B . \
-B build \
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
-DRP3D_DOUBLE_PRECISION_ENABLED=${{ matrix.config.double_precision }} \
-DRP3D_COMPILE_TESTS=True \
@ -113,9 +113,5 @@ jobs:
- name: Build
shell: bash
run: cmake --build . --config ${{ matrix.config.build_type }}
- name: Unit Tests
shell: bash
run: ./test/tests
run: cmake --build build/ --config ${{ matrix.config.build_type }}