Skip to content

Commit 6ac7a82

Browse files
committed
Disable Windows x86 by default
1 parent 2b24f65 commit 6ac7a82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Build Installers
2727
run: ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=false set-spec-version build-installers unset-spec-version
2828
env:
29-
BUILD_X86: true
29+
BUILD_X86: false
3030
BUILD_X64: true
3131
BUILD_OTHER: true
3232
- name: Fix Platform Independent Build

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
</and>
221221
<then>
222222
<echo message="No platform specified, building all platforms"/>
223-
<property name="generate.installer.for.platforms" value="windows-x86 windows-x64 linux-x64 macosx"/>
223+
<property name="generate.installer.for.platforms" value="windows-x64 linux-x64 macosx"/>
224224
</then>
225225
<else>
226226
<if>

jdks/download-jdks.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -263,14 +263,14 @@ else
263263
then
264264
build_mac_jdk &
265265
build_other_jdk linux x64 x64 &
266-
build_other_jdk windows x86-32 x86 &
266+
# Windows 32bit not by default build_other_jdk windows x86-32 x86 &
267267
build_other_jdk windows x64 x64 &
268268
else
269269
build_mac_jdk
270270
build_other_jdk linux x64 x64
271-
build_other_jdk windows x86-32 x86
271+
## Windows 32bit not by default build_other_jdk windows x86-32 x86
272272
build_other_jdk windows x64 x64
273-
#Linux 32bit not supported... build_other_jdk linux x86-32
273+
# Linux 32bit not supported... build_other_jdk linux x86-32
274274
fi
275275

276276
fi

0 commit comments

Comments
 (0)