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