Skip to content

Commit 66a5f6a

Browse files
authored
Remove 32-bit Windows builds (#95)
We don't support 32-bit Windows anymore.
1 parent 8a1e1ca commit 66a5f6a

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

.github/workflows/main.yml

-14
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,12 @@ jobs:
5353
matrix:
5454
include:
5555
- artifact-name: Win64Release
56-
architecture: x64
57-
build-options: "-PskipDebug"
58-
- artifact-name: Win32Release
59-
architecture: x86
6056
build-options: "-PskipDebug"
6157
- artifact-name: WinArm64Release
62-
architecture: x64
6358
build-options: "-PskipDebug -Pplatform=windows-arm64"
6459
- artifact-name: Win64
65-
architecture: x64
66-
build-options: "-PskipRelease -PskipSources"
67-
- artifact-name: Win32
68-
architecture: x86
6960
build-options: "-PskipRelease -PskipSources"
7061
- artifact-name: WinArm64
71-
architecture: x64
7262
build-options: "-PskipRelease -PskipSources -Pplatform=windows-arm64"
7363

7464
name: "Build - ${{ matrix.artifact-name }}"
@@ -81,10 +71,6 @@ jobs:
8171
with:
8272
java-version: 11
8373
distribution: 'zulu'
84-
architecture: ${{ matrix.architecture }}
85-
- name: Set Java Heap Size
86-
run: sed -i 's/-Xmx2g/-Xmx1g/g' gradle.properties
87-
if: matrix.architecture == 'x86'
8874
- run: |
8975
@call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\VC\\Auxiliary\\Build\\vcvars64.bat"
9076
set PATH=%PATH%;%ANT_HOME%\bin

build.gradle

+1-5
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ def getPlatformPath(platform) {
114114
return "osx/x86-64"
115115
} else if (platform == "osx-arm64") {
116116
return "osx/arm64"
117-
} else if (platform == "windows-x86") {
118-
return "windows/x86"
119117
} else if (platform == "windows-x86_64") {
120118
return "windows/x86-64"
121119
} else if (platform == "windows-arm64") {
@@ -305,9 +303,7 @@ if (project.platform == "linux-athena") {
305303

306304
if (project.platform.startsWith("windows")) {
307305
def platformArg = "/p:Platform=x64"
308-
if (project.platform == "windows-x86") {
309-
platformArg = "/p:Platform=win32"
310-
} else if (project.platform == "windows-arm64") {
306+
if (project.platform == "windows-arm64") {
311307
platformArg = "/p:Platform=arm64"
312308
}
313309

0 commit comments

Comments
 (0)