Parcourir la source

Set TORQUE_TESTING on in pipeline

Lukas Aldershaab il y a 2 ans
Parent
commit
1ce2dd07b0
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      .github/workflows/cmake.yml

+ 2 - 2
.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