From 4489401286d1844be3c6788227b34d46aaf16689 Mon Sep 17 00:00:00 2001 From: Brandyn / Techy Date: Mon, 6 Apr 2026 23:49:39 -0500 Subject: [PATCH] update build --- .gitea/workflows/windows-setup.yml | 11 +++++++++++ winBuild.bat | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100755 winBuild.bat diff --git a/.gitea/workflows/windows-setup.yml b/.gitea/workflows/windows-setup.yml index 944895090..1aea402bc 100644 --- a/.gitea/workflows/windows-setup.yml +++ b/.gitea/workflows/windows-setup.yml @@ -27,9 +27,20 @@ jobs: run: | call Setup.bat + - name: Run GenerateProjectFiles.bat in repo root + shell: cmd + run: | + call RunGenerateProjectfiles.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" +90758 diff --git a/winBuild.bat b/winBuild.bat new file mode 100755 index 000000000..24b30d3dd --- /dev/null +++ b/winBuild.bat @@ -0,0 +1,11 @@ +@echo off +call .\Engine\Build\BatchFiles\RunUAT.bat BuildGraph ^ + -script=Engine/Build/InstalledEngineBuild.xml ^ + -target="Make Installed Build Linux" ^ + -set:HostPlatformOnly=true ^ + -set:WithLinux=true ^ + -set:WithWin64=true ^ + -set:WithAndroid=false ^ + -set:WithClient=false ^ + -set:WithServer=false ^ + -set:WithDDC=false