File tree 2 files changed +1
-19
lines changed
2 files changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -53,22 +53,12 @@ jobs:
53
53
matrix :
54
54
include :
55
55
- artifact-name : Win64Release
56
- architecture : x64
57
- build-options : " -PskipDebug"
58
- - artifact-name : Win32Release
59
- architecture : x86
60
56
build-options : " -PskipDebug"
61
57
- artifact-name : WinArm64Release
62
- architecture : x64
63
58
build-options : " -PskipDebug -Pplatform=windows-arm64"
64
59
- artifact-name : Win64
65
- architecture : x64
66
- build-options : " -PskipRelease -PskipSources"
67
- - artifact-name : Win32
68
- architecture : x86
69
60
build-options : " -PskipRelease -PskipSources"
70
61
- artifact-name : WinArm64
71
- architecture : x64
72
62
build-options : " -PskipRelease -PskipSources -Pplatform=windows-arm64"
73
63
74
64
name : " Build - ${{ matrix.artifact-name }}"
81
71
with :
82
72
java-version : 11
83
73
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'
88
74
- run : |
89
75
@call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\VC\\Auxiliary\\Build\\vcvars64.bat"
90
76
set PATH=%PATH%;%ANT_HOME%\bin
Original file line number Diff line number Diff line change @@ -114,8 +114,6 @@ def getPlatformPath(platform) {
114
114
return " osx/x86-64"
115
115
} else if (platform == " osx-arm64" ) {
116
116
return " osx/arm64"
117
- } else if (platform == " windows-x86" ) {
118
- return " windows/x86"
119
117
} else if (platform == " windows-x86_64" ) {
120
118
return " windows/x86-64"
121
119
} else if (platform == " windows-arm64" ) {
@@ -305,9 +303,7 @@ if (project.platform == "linux-athena") {
305
303
306
304
if (project. platform. startsWith(" windows" )) {
307
305
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" ) {
311
307
platformArg = " /p:Platform=arm64"
312
308
}
313
309
You can’t perform that action at this time.
0 commit comments