From e7765984fef0bafecc2a3f18ad9d44875105c566 Mon Sep 17 00:00:00 2001 From: DavidXanatos Date: Sun, 20 Nov 2022 18:25:39 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e9cc9929..7af213fc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,6 +36,10 @@ jobs: # - name: Build Sandboxie # run: msbuild /t:build Sandboxie\Sandbox.sln /p:Configuration="SbieRelease" /p:Platform=${{ matrix.platform }} + # + # Compile Sandboxie Core + # + - name: Build Sandboxie x86 run: msbuild /t:build Sandboxie\Sandbox.sln /p:Configuration="SbieRelease" /p:Platform=Win32 -maxcpucount:8 @@ -48,6 +52,10 @@ jobs: - name: Build Sandboxie ARM64EC run: msbuild /t:build Sandboxie\Sandbox.sln /p:Configuration="SbieRelease" /p:Platform=ARM64EC -maxcpucount:8 + # + # Prepare Qt Framework + # + #- name: Cache Qt # id: cache-qt # uses: actions/cache@v3 @@ -103,6 +111,10 @@ jobs: # if: steps.cache-qt.outputs.cache-hit != 'true' run: SandboxiePlus\install_jom.cmd + # + # Compile Sandboxie Plus + # + - name: Build Sandboxie-Plus x64 run: SandboxiePlus\qmake_plus.cmd x64 @@ -118,6 +130,24 @@ jobs: - name: Build Sandboxie-Plus x86 run: SandboxiePlus\qmake_plus.cmd Win32 + # + # Compile Sandboxie Live Updater + # + + - name: Build Sandboxie-Live x86 + run: msbuild /t:build SandboxieLive\SandboxieLive.sln /p:Configuration="Release" /p:Platform=Win32 -maxcpucount:8 + + - name: Build Sandboxie-Live x64 + run: msbuild /t:build SandboxieLive\SandboxieLive.sln /p:Configuration="Release" /p:Platform=x64 -maxcpucount:8 + + - name: Build Sandboxie-Live ARM64 + run: msbuild /t:build SandboxieLive\SandboxieLive.sln /p:Configuration="Release" /p:Platform=ARM64 -maxcpucount:8 + + + # + # Merge everythign together + # + - name: Add missing languages for Qt5 x86 (issue 1528) run: Installer\fix_qt5_languages.cmd Win32