Files
UnrealEngine/.gitea/workflows/windows-setup.yml
Brandyn / Techy 6ad4b01281
Some checks failed
Windows setup / run-setup (push) Failing after 31m46s
Fix windows build & a vulkan crash
2026-04-07 00:27:47 -05:00

47 lines
930 B
YAML

name: Windows setup
on:
push:
branches:
- main
- master
workflow_dispatch:
jobs:
run-setup:
runs-on: windows-2022
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Show current directory
shell: cmd
run: |
echo Workspace is:
cd
dir
- name: Run setup.bat from repo root
shell: cmd
run: |
call Setup.bat
- name: Run GenerateProjectFiles.bat in repo root
shell: cmd
run: |
call GenerateProjectfiles.bat
- name: Run winBuild.bat in repo root
shell: cmd
run: |
call winBuild.bat
- name: Cleanup
shell: cmd
run: |
attrib -h -s "%GITHUB_WORKSPACE%\*" /s /d 2>nul
del /f /q /s /a "%GITHUB_WORKSPACE%\*" 2>nul
for /d %%D in ("%GITHUB_WORKSPACE%\*") do rd /s /q "%%D"