Set TORQUE_TESTING on in pipeline

This commit is contained in:
Lukas Aldershaab 2023-04-06 15:59:44 +02:00
parent 1d28ddf734
commit 1ce2dd07b0

View file

@ -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