File tree 3 files changed +6
-15
lines changed
3 files changed +6
-15
lines changed Original file line number Diff line number Diff line change 24
24
- name : Override Harness (custom icon)
25
25
run : ./gradlew overrideHarness -Ptag_name=${{ github.ref_name }}
26
26
- name : Build Installers
27
- run : ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=true set-spec-version build-installers unset-spec-version
27
+ run : ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=false set-spec-version build-installers unset-spec-version
28
28
env :
29
29
BUILD_X86 : true
30
30
BUILD_X64 : true
Original file line number Diff line number Diff line change 272
272
<!-- <property name="generate.installer.for.platforms" value="windows-x86 windows-x64 linux-x86 linux-x64 macosx"/> -->
273
273
<property name =" generator-jdk-location-forward-slashes" value =" ${ java.home } " />
274
274
<property name =" generated-installers-location-forward-slashes" value =" ${ basedir } /build/installer" />
275
- <property name =" pack200.enabled" value =" true " />
275
+ <property name =" pack200.enabled" value =" false " />
276
276
<property name =" nbi.icon.file" value =" ${ basedir } /jmonkeyplatform.png" />
277
277
<property name =" nbi.dock.icon.file" value =" ${ basedir } /jmonkeyplatform.icns" />
278
278
<property name =" product.description" value =" ${ app.description } " />
Original file line number Diff line number Diff line change @@ -165,12 +165,10 @@ function unpack_windows {
165
165
find . -exec chmod u+w {} \; # Make all file writable to allow uninstaller's cleaner to remove file
166
166
167
167
find . -type f \( -name " *.exe" -o -name " *.dll" \) -exec chmod u+rwx {} \; # Make them executable
168
-
169
- find . -type f -name " *.pack" | while read eachFile; do
170
- echo " >> Unpacking $eachFile ..." ;
171
- unpack200 $eachFile ${eachFile% .pack} .jar;
172
- rm $eachFile ;
173
- done
168
+
169
+ # Insert fake unpack200.exe
170
+ # See https://github.com/jMonkeyEngine/sdk/issues/491
171
+ touch bin/unpack200.exe
174
172
175
173
cd ../
176
174
@@ -248,13 +246,6 @@ function compile_other {
248
246
exit 1
249
247
fi
250
248
251
- echo " > Creating SFX JDK package $name "
252
- if [ -f " $1 -$2 /jre/lib/rt.jar" ]; then # Already packed?
253
- echo " > PACK200 rt.jar"
254
- pack200 -J-Xmx1024m $1 -$2 /jre/lib/rt.jar.pack.gz $1 -$2 /jre/lib/rt.jar
255
- rm -rf $1 -$2 /jre/lib/rt.jar
256
- fi
257
-
258
249
echo " > Zipping JDK"
259
250
cd $1 -$2 # zip behaves differently between 7zip and Info-Zip, so simply change wd
260
251
zip -9 -qry ../jdk_tmp_sfx.zip *
You can’t perform that action at this time.
0 commit comments