From 5d9fa0ed99438888fe6475478013350389a5368f Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Tue, 3 Aug 2021 15:09:40 +0200 Subject: [PATCH] Working on Github Actions --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index c37b2dba..1207d557 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 build \ + -B . \ -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \ -DRP3D_DOUBLE_PRECISION_ENABLED=${{ matrix.config.double_precision }} \ -DRP3D_COMPILE_TESTS=True \ @@ -117,5 +117,5 @@ jobs: - name: Unit Tests shell: bash - run: ./build/test/tests + run: ./test/tests