From fb70dfd037b3a97cd793c73d5c591dd98153aa26 Mon Sep 17 00:00:00 2001 From: GregorySchwing <39970712+GregorySchwing@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:03:46 -0500 Subject: [PATCH] Update cmake.yml --- .github/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 119bb18..1d0f0de 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -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