Update build-windows-msvc.yml

This commit is contained in:
marauder2k7 2023-07-25 19:59:57 +01:00
parent c017f7ea9b
commit ff08c7be3b

View file

@ -16,6 +16,7 @@ concurrency:
cancel-in-progress: true
jobs:
build-windows:
if: github.repository == 'TorqueGameEngines/Torque3D'
name: Windows Latest MSVC
runs-on: windows-latest
strategy:
@ -34,11 +35,11 @@ jobs:
- name: Install Windows MSVC Dependencies
run: |
cmake --version
cmd "${{ env.environment_script }}"
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