| 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 |
|
|---|
| 9 | set -Eeo pipefail
|
|---|
| 10 |
|
|---|
| 11 | # Don't show one time passwords
|
|---|
| 12 | set +x
|
|---|
| 13 |
|
|---|
| 14 | if [ -z "${1-}" ]
|
|---|
| 15 | then
|
|---|
| 16 | echo "Usage: $0 josm_revision"
|
|---|
| 17 | exit 1
|
|---|
| 18 | fi
|
|---|
| 19 |
|
|---|
| 20 | echo "Building JOSM Windows Installer packages"
|
|---|
| 21 |
|
|---|
| 22 | mkdir app
|
|---|
| 23 |
|
|---|
| 24 | if [ -z "$SIGN_CERT" ] || [ -z "$SIGN_STOREPASS" ] || [ -z "$SIGN_TSA" ]
|
|---|
| 25 | then
|
|---|
| 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
|
|---|
| 29 | else
|
|---|
| 30 | SIGNAPP=true
|
|---|
| 31 | fi
|
|---|
| 32 |
|
|---|
| 33 | set -u
|
|---|
| 34 |
|
|---|
| 35 | # jpackage copies resources files to temp dir but not all of them, only an hardcoded set
|
|---|
| 36 | # see https://github.com/openjdk/jdk/blob/739769c8fc4b496f08a92225a12d07414537b6c0/src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinMsiBundler.java#L437
|
|---|
| 37 | # so we replace a placeholder to get an absolute path when wix reads this file
|
|---|
| 38 | #sed -i "s|%josm-source-dir%|$(pwd)|g" native/windows/main.wxs
|
|---|
| 39 | cp native/windows/main.wxs native/windows/main.wxs.bak
|
|---|
| 40 | sed -i "s?%josm-source-dir%?$(pwd)?" native/windows/main.wxs
|
|---|
| 41 | sed -i 's?"/c/?"c:/?g' native/windows/main.wxs
|
|---|
| 42 | sed -i 's?"/d/?"d:/?g' native/windows/main.wxs
|
|---|
| 43 |
|
|---|
| 44 | JPACKAGEOPTIONS=""
|
|---|
| 45 |
|
|---|
| 46 | echo "Building EXE and MSI"
|
|---|
| 47 | for type in exe msi
|
|---|
| 48 | do
|
|---|
| 49 | # $JPACKAGEOPTIONS is supposed to be expanded
|
|---|
| 50 | # shellcheck disable=SC2086
|
|---|
| 51 | jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \
|
|---|
| 52 | --main-class org.openstreetmap.josm.gui.MainApplication \
|
|---|
| 53 | --icon ./native/windows/logo.ico --type $type --dest app \
|
|---|
| 54 | --java-options "--add-modules java.scripting,java.sql,javafx.controls,javafx.media,javafx.swing,javafx.web" \
|
|---|
| 55 | --java-options "--add-exports=java.base/sun.security.action=ALL-UNNAMED" \
|
|---|
| 56 | --java-options "--add-exports=java.desktop/com.sun.imageio.plugins.jpeg=ALL-UNNAMED" \
|
|---|
| 57 | --java-options "--add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" \
|
|---|
| 58 | --java-options "--add-opens=java.base/java.lang=ALL-UNNAMED" \
|
|---|
| 59 | --java-options "--add-opens=java.base/java.nio=ALL-UNNAMED" \
|
|---|
| 60 | --java-options "--add-opens=java.base/jdk.internal.loader=ALL-UNNAMED" \
|
|---|
| 61 | --java-options "--add-opens=java.base/jdk.internal.ref=ALL-UNNAMED" \
|
|---|
| 62 | --java-options "--add-opens=java.desktop/javax.imageio.spi=ALL-UNNAMED" \
|
|---|
| 63 | --java-options "--add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED" \
|
|---|
| 64 | --java-options "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED" \
|
|---|
| 65 | --app-version "1.5.$1" \
|
|---|
| 66 | --copyright "JOSM, and all its integral parts, are released under the GNU General Public License v2 or later" \
|
|---|
| 67 | --vendor "JOSM" \
|
|---|
| 68 | --resource-dir native/windows \
|
|---|
| 69 | --win-upgrade-uuid 79be9cf4-6dc7-41e2-a6cd-bbfaa4c07481 \
|
|---|
| 70 | --win-per-user-install \
|
|---|
| 71 | --win-dir-chooser \
|
|---|
| 72 | --win-shortcut \
|
|---|
| 73 | --win-menu \
|
|---|
| 74 | --win-menu-group "JOSM" \
|
|---|
| 75 | --file-associations native/file-associations/bz2.properties \
|
|---|
| 76 | --file-associations native/file-associations/geojson.properties \
|
|---|
| 77 | --file-associations native/file-associations/gpx.properties \
|
|---|
| 78 | --file-associations native/file-associations/gz.properties \
|
|---|
| 79 | --file-associations native/file-associations/jos.properties \
|
|---|
| 80 | --file-associations native/file-associations/joz.properties \
|
|---|
| 81 | --file-associations native/file-associations/osm.properties \
|
|---|
| 82 | --file-associations native/file-associations/xz.properties \
|
|---|
| 83 | --file-associations native/file-associations/zip.properties \
|
|---|
| 84 | --add-launcher "JOSM HWConsole"=native/windows/MLConsole.properties \
|
|---|
| 85 | --add-modules java.compiler,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
|
|---|
| 86 | done
|
|---|
| 87 |
|
|---|
| 88 | mv native/windows/main.wxs.bak native/windows/main.wxs
|
|---|
| 89 |
|
|---|
| 90 | mv app/JOSM-1.5."$1".exe app/JOSM.exe
|
|---|
| 91 | mv app/JOSM-1.5."$1".msi app/JOSM.msi
|
|---|
| 92 |
|
|---|
| 93 | # Workaround to https://bugs.openjdk.java.net/browse/JDK-8261845
|
|---|
| 94 | # to remove after we switch to Java 17+ for jpackage builds
|
|---|
| 95 | chmod u+w app/JOSM.exe
|
|---|
| 96 |
|
|---|
| 97 | echo "Building done."
|
|---|
| 98 |
|
|---|
| 99 | if $SIGNAPP; then
|
|---|
| 100 | CERTIFICATE_P12=certificate.p12
|
|---|
| 101 | echo "$SIGN_CERT" | base64 --decode > $CERTIFICATE_P12
|
|---|
| 102 | for ext in exe msi
|
|---|
| 103 | do
|
|---|
| 104 | 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"
|
|---|
| 105 | done
|
|---|
| 106 | rm $CERTIFICATE_P12
|
|---|
| 107 | fi
|
|---|