From e02af3569607e0e665fec0248c6d568c72bf3f02 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 | 6 ------ build.gradle | 2 -- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f611abb..1ee1d23 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,18 +55,12 @@ jobs: - 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" diff --git a/build.gradle b/build.gradle index e14e180..42b5cd2 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") {