Skip to content

Commit

Permalink
Merge pull request jMonkeyEngine#563 from tonihele/feature/issue-558
Browse files Browse the repository at this point in the history
Disable Windows x86 by default
  • Loading branch information
tonihele authored Jan 9, 2024
2 parents 2b24f65 + 6ac7a82 commit 6ee64cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Build Installers
run: ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=false set-spec-version build-installers unset-spec-version
env:
BUILD_X86: true
BUILD_X86: false
BUILD_X64: true
BUILD_OTHER: true
- name: Fix Platform Independent Build
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
</and>
<then>
<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>
<else>
<if>
Expand Down
6 changes: 3 additions & 3 deletions jdks/download-jdks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -263,14 +263,14 @@ else
then
build_mac_jdk &
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 &
else
build_mac_jdk
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
#Linux 32bit not supported... build_other_jdk linux x86-32
# Linux 32bit not supported... build_other_jdk linux x86-32
fi

fi
Expand Down

0 comments on commit 6ee64cb

Please sign in to comment.