Skip to content

Commit

Permalink
Remove 32bit Windows builds
Browse files Browse the repository at this point in the history
We don't support 32bit Windows anymore.
  • Loading branch information
Gold856 committed Dec 22, 2024
1 parent 8a1e1ca commit a29c26d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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
Expand Down
6 changes: 1 addition & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down Expand Up @@ -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"
}

Expand Down

0 comments on commit a29c26d

Please sign in to comment.