From a29c26d1cbfcad21eaef0d2fbf914eb05fb07460 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:39:00 -0500 Subject: [PATCH] Remove 32bit Windows builds We don't support 32bit Windows anymore. --- .github/workflows/main.yml | 14 -------------- build.gradle | 6 +----- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f611abb..9cf5092 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -53,22 +53,12 @@ jobs: matrix: include: - artifact-name: Win64Release - architecture: x64 - build-options: "-PskipDebug" - - artifact-name: Win32Release - architecture: x86 build-options: "-PskipDebug" - artifact-name: WinArm64Release - architecture: x64 build-options: "-PskipDebug -Pplatform=windows-arm64" - artifact-name: Win64 - architecture: x64 - build-options: "-PskipRelease -PskipSources" - - artifact-name: Win32 - architecture: x86 build-options: "-PskipRelease -PskipSources" - artifact-name: WinArm64 - architecture: x64 build-options: "-PskipRelease -PskipSources -Pplatform=windows-arm64" name: "Build - ${{ matrix.artifact-name }}" @@ -81,10 +71,6 @@ jobs: with: java-version: 11 distribution: 'zulu' - architecture: ${{ matrix.architecture }} - - name: Set Java Heap Size - run: sed -i 's/-Xmx2g/-Xmx1g/g' gradle.properties - if: matrix.architecture == 'x86' - run: | @call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\VC\\Auxiliary\\Build\\vcvars64.bat" set PATH=%PATH%;%ANT_HOME%\bin diff --git a/build.gradle b/build.gradle index e14e180..15752e9 100644 --- a/build.gradle +++ b/build.gradle @@ -114,8 +114,6 @@ def getPlatformPath(platform) { return "osx/x86-64" } else if (platform == "osx-arm64") { return "osx/arm64" - } else if (platform == "windows-x86") { - return "windows/x86" } else if (platform == "windows-x86_64") { return "windows/x86-64" } else if (platform == "windows-arm64") { @@ -305,9 +303,7 @@ if (project.platform == "linux-athena") { if (project.platform.startsWith("windows")) { def platformArg = "/p:Platform=x64" - if (project.platform == "windows-x86") { - platformArg = "/p:Platform=win32" - } else if (project.platform == "windows-arm64") { + if (project.platform == "windows-arm64") { platformArg = "/p:Platform=arm64" }