Browse Source

Disable Windows x86 by default

Toni Helenius 1 năm trước cách đây
mục cha
commit
6ac7a82703

+ 1 - 1
.github/workflows/release.yml

@@ -26,7 +26,7 @@ jobs:
     - name: Build Installers
     - name: Build Installers
       run: ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=false set-spec-version build-installers unset-spec-version
       run: ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=false set-spec-version build-installers unset-spec-version
       env:
       env:
-        BUILD_X86: true
+        BUILD_X86: false
         BUILD_X64: true
         BUILD_X64: true
         BUILD_OTHER: true
         BUILD_OTHER: true
     - name: Fix Platform Independent Build
     - name: Fix Platform Independent Build

+ 1 - 1
build.xml

@@ -220,7 +220,7 @@
             </and>
             </and>
             <then>
             <then>
                 <echo message="No platform specified, building all platforms"/>
                 <echo message="No platform specified, building all platforms"/>
-                <property name="generate.installer.for.platforms" value="windows-x86 windows-x64 linux-x64 macosx"/>
+                <property name="generate.installer.for.platforms" value="windows-x64 linux-x64 macosx"/>
             </then>
             </then>
             <else>
             <else>
                 <if>
                 <if>

+ 3 - 3
jdks/download-jdks.sh

@@ -263,14 +263,14 @@ else
     then
     then
         build_mac_jdk &
         build_mac_jdk &
         build_other_jdk linux x64 x64 &
         build_other_jdk linux x64 x64 &
-        build_other_jdk windows x86-32 x86 &
+        # Windows 32bit not by default build_other_jdk windows x86-32 x86 &
         build_other_jdk windows x64 x64 &
         build_other_jdk windows x64 x64 &
     else
     else
         build_mac_jdk
         build_mac_jdk
         build_other_jdk linux x64 x64
         build_other_jdk linux x64 x64
-        build_other_jdk windows x86-32 x86
+        ## Windows 32bit not by default build_other_jdk windows x86-32 x86
         build_other_jdk windows x64 x64
         build_other_jdk windows x64 x64
-        #Linux 32bit not supported... build_other_jdk linux x86-32
+        # Linux 32bit not supported... build_other_jdk linux x86-32
     fi
     fi
     
     
 fi
 fi