Przeglądaj źródła

Update build-windows-msvc.yml

marauder2k7 2 lat temu
rodzic
commit
1ccaf28b2a
1 zmienionych plików z 2 dodań i 7 usunięć
  1. 2 7
      .github/workflows/build-windows-msvc.yml

+ 2 - 7
.github/workflows/build-windows-msvc.yml

@@ -33,17 +33,12 @@ jobs:
 
             - name: Install Windows MSVC Dependencies
               run: |
-                choco install cmake
                 cmake --version
+                cmd "${{ env.environment_script }}"
 
             - name: Configure
               shell: bash
-              run: cmake \
-                -B ${{ github.workspace }}/build  \
-                -G "${{ env.generators }}" \ 
-                -DCMAKE_BUILD_TYPE=${{ env.build_type }} \
-                -DTORQUE_APP_NAME=Torque3D \ 
-                -DTORQUE_TESTING=ON
+              run: cmake -B ${{ github.workspace }}/build -G "${{ env.generators }}" -DCMAKE_BUILD_TYPE=${{ env.build_type }} -DTORQUE_APP_NAME=Torque3D \ -DTORQUE_TESTING=ON
             
             - name: Build
               shell: bash