Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorySchwing authored Aug 13, 2021
1 parent 1f92f22 commit fb70dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
- name: Make bin
# 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: mkdir bin; cd bin
run: mkdir bin

- name: Configure CMake
# 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 .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGTEST=ON
run: cd bin; cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGTEST=ON

- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit fb70dfd

Please sign in to comment.