Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 32bit Windows builds #95

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading