source: josm/trunk/native/windows/win-jpackage.sh@ 18163

Last change on this file since 18163 was 18163, checked in by Don-vip, 3 years ago

see #17083 - fix #4920 - setup a win-upgrade-uuid to properly upgrade JOSM installation at each new version

  • Property svn:executable set to *
File size: 3.8 KB
Line 
1#!/bin/bash
2
3## Expected environment, passed from GitHub secrets:
4# https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets
5# SIGN_CERT PKCS12 certificate keystore used for code signing, base64 encoded
6# SIGN_STOREPASS Password for that keystore
7# SIGN_TSA URL of Time Stamping Authority to use
8
9set -Eeo pipefail
10
11# Don't show one time passwords
12set +x
13
14if [ -z "${1-}" ]
15then
16 echo "Usage: $0 josm_revision"
17 exit 1
18fi
19
20echo "Building JOSM Windows Installer packages"
21
22mkdir app
23
24if [ -z "$SIGN_CERT" ] || [ -z "$SIGN_STOREPASS" ] || [ -z "$SIGN_TSA" ]
25then
26 echo "SIGN_CERT, SIGN_STOREPASS and SIGN_TSA are not set in the environment."
27 echo "A JOSM.exe and JOSM.msi will be created but not signed."
28 SIGNAPP=false
29else
30 SIGNAPP=true
31fi
32
33set -u
34
35JPACKAGEOPTIONS=""
36
37echo "Building EXE and MSI"
38for type in exe msi
39do
40 jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \
41 --main-class org.openstreetmap.josm.gui.MainApplication \
42 --icon ./native/windows/logo.ico --type $type --dest app \
43 --java-options "--add-modules java.scripting,java.sql,javafx.controls,javafx.media,javafx.swing,javafx.web" \
44 --java-options "--add-exports=java.base/sun.security.action=ALL-UNNAMED" \
45 --java-options "--add-exports=java.desktop/com.sun.imageio.plugins.jpeg=ALL-UNNAMED" \
46 --java-options "--add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" \
47 --java-options "--add-opens=java.base/java.lang=ALL-UNNAMED" \
48 --java-options "--add-opens=java.base/java.nio=ALL-UNNAMED" \
49 --java-options "--add-opens=java.base/jdk.internal.loader=ALL-UNNAMED" \
50 --java-options "--add-opens=java.base/jdk.internal.ref=ALL-UNNAMED" \
51 --java-options "--add-opens=java.desktop/javax.imageio.spi=ALL-UNNAMED" \
52 --java-options "--add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED" \
53 --java-options "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED" \
54 --app-version "1.5.$1" \
55 --copyright "JOSM, and all its integral parts, are released under the GNU General Public License v2 or later" \
56 --vendor "JOSM" \
57 --win-upgrade-uuid 79be9cf4-6dc7-41e2-a6cd-bbfaa4c07481 \
58 --win-per-user-install \
59 --win-dir-chooser \
60 --win-shortcut \
61 --win-menu \
62 --file-associations native/file-associations/bz2.properties \
63 --file-associations native/file-associations/geojson.properties \
64 --file-associations native/file-associations/gpx.properties \
65 --file-associations native/file-associations/gz.properties \
66 --file-associations native/file-associations/jos.properties \
67 --file-associations native/file-associations/joz.properties \
68 --file-associations native/file-associations/osm.properties \
69 --file-associations native/file-associations/zip.properties \
70 --add-launcher HWConsole=native/windows/MLConsole.properties \
71 --add-modules java.base,java.datatransfer,java.desktop,java.logging,java.management,java.naming,java.net.http,java.prefs,java.rmi,java.scripting,java.sql,java.transaction.xa,java.xml,jdk.crypto.ec,jdk.jfr,jdk.jsobject,jdk.unsupported,jdk.unsupported.desktop,jdk.xml.dom,javafx.controls,javafx.media,javafx.swing,javafx.web
72done
73
74mv app/JOSM-1.5.$1.exe app/JOSM.exe
75mv app/JOSM-1.5.$1.msi app/JOSM.msi
76
77# Workaround to https://bugs.openjdk.java.net/browse/JDK-8261845
78# to remove after we switch to Java 17+ for jpackage builds
79chmod u+w app/JOSM.exe
80
81echo "Building done."
82
83if $SIGNAPP; then
84 CERTIFICATE_P12=certificate.p12
85 echo "$SIGN_CERT" | base64 --decode > $CERTIFICATE_P12
86 for ext in exe msi
87 do
88 signtool.exe sign //f $CERTIFICATE_P12 //d "Java OpenStreetMap Editor" //du "https://josm.openstreetmap.de" //p "$SIGN_STOREPASS" //v //fd SHA256 //tr "$SIGN_TSA" //td SHA256 "app/JOSM.$ext"
89 done
90 rm $CERTIFICATE_P12
91fi
Note: See TracBrowser for help on using the repository browser.