From fd0efc05af9fd257f9d8ccb150cb10988ccbfb9d Mon Sep 17 00:00:00 2001 From: MihailRis Date: Mon, 12 Aug 2024 04:53:30 +0300 Subject: [PATCH] fix 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 e4e83b40..343d35e7 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -46,7 +46,7 @@ jobs: # install EnTT git clone https://github.com/skypjack/entt.git cd entt/build - cmake -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_TESTS=ON .. + cmake -DCMAKE_BUILD_TYPE=Release .. sudo make install cd ../.. @@ -56,7 +56,7 @@ jobs: # make. # # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{inputs.build_type}} + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{inputs.build_type}} -DVOXELENGINE_BUILD_TESTS=ON - name: Build # Build your program with the given configuration