From 8d59872b097fd86dcf18f19350dd3c2960ec3e81 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Tue, 3 Aug 2021 23:02:51 +0200 Subject: [PATCH] Working on Github Actions --- .github/workflows/build-and-test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 1207d557..425d9dd1 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -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 }}