From 1ce2dd07b043b232f05991a21c2a994891233352 Mon Sep 17 00:00:00 2001 From: Lukas Aldershaab Date: Thu, 6 Apr 2023 15:59:44 +0200 Subject: [PATCH] Set TORQUE_TESTING on in pipeline --- .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 9631dd776..c05622d8b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -50,7 +50,7 @@ jobs: - 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 -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTORQUE_APP_NAME=Torque3D + run: cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTORQUE_APP_NAME=Torque3D -DTORQUE_TESTING=ON - name: Build # Build your program with the given configuration @@ -58,7 +58,7 @@ jobs: - name: Test run: | - cd ${{github.workspace}}/My Projects/Torque3D/game + cd "${{github.workspace}}/My Projects/Torque3D/game" ./Torque3D runTests.tscript - name: Publish Test Report