Skip to content

Commit

Permalink
Experimentation
Browse files Browse the repository at this point in the history
  • Loading branch information
malachib committed Mar 16, 2023
1 parent f36b638 commit 51d8c5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
submodules: recursive

- name: Configure CMake
working-directory: ${{unit_test_dir}}
working-directory: test/catch
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{unit_test_dir}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake -B $unit_test_dir/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
# Build your program with the given configuration
working-directory: test/catch
working-directory: ${{env.unit_test_dir}}
run: cmake --build $unit_test_dir/build --config ${{env.BUILD_TYPE}}

- name: Test
Expand Down

0 comments on commit 51d8c5c

Please sign in to comment.