diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 923503f6..05470b52 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -25,18 +25,18 @@ jobs: - name: CMake run: cmake ${{github.workspace}}/cpp - - name: Build - # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/cpp/Build - - # - name: Make + # - name: Build # # Build your program with the given configuration - # run: make ${{github.workspace}}/cpp/Build -j19 + # run: cmake --build ${{github.workspace}}/cpp/Build + + - name: Make + # Build your program with the given configuration + run: make ${{github.workspace}}/cpp/Build -j19 # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - name: Test - working-directory: ${{github.workspace}}/cpp/Build/tests - run: ctest ${{github.workspace}}/cpp/Build -V #--test-dir ${{github.workspace}}/cpp/Build/tests + # working-directory: ${{github.workspace}}/cpp/Build/tests + run: ctest ${{github.workspace}}/cpp/Build -V --test-dir ${{github.workspace}}/cpp/Build/tests