build.ps1 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. Param(
  2. [Parameter(Mandatory, HelpMessage="Please provide a name for the app")][string] $AppName,
  3. [Parameter(Mandatory, HelpMessage="Please provide the glob pattern to identify the main jar")][string] $MainJarGlob,
  4. [Parameter(Mandatory, HelpMessage="Please provide the module- and main class path to start the app")][string] $ModuleAndMainClass,
  5. [Parameter(Mandatory, HelpMessage="Please provide the windows upgrade uuid for the installer")][string] $UpgradeUUID,
  6. [Parameter(Mandatory, HelpMessage="Please provide the name of the vendor")][string] $Vendor,
  7. [Parameter(Mandatory, HelpMessage="Please provide the starting year for the copyright notice")][int] $CopyrightStartYear,
  8. [Parameter(Mandatory, HelpMessage="Please provide a help url")][string] $HelpUrl,
  9. [Parameter(Mandatory, HelpMessage="Please provide an update url")][string] $UpdateUrl,
  10. [Parameter(Mandatory, HelpMessage="Please provide an about url")][string] $AboutUrl,
  11. [Parameter(Mandatory, HelpMessage="Please provide an alias for localhost")][string] $LoopbackAlias,
  12. [bool] $clean
  13. )
  14. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
  15. $ProgressPreference = 'SilentlyContinue' # disables Invoke-WebRequest's progress bar, which slows down downloads to a few bytes/s
  16. # check preconditions
  17. if ((Get-Command "git" -ErrorAction SilentlyContinue) -eq $null)
  18. {
  19. Write-Host "Unable to find git.exe in your PATH (try: choco install git)"
  20. exit 1
  21. }
  22. if ((Get-Command "mvn" -ErrorAction SilentlyContinue) -eq $null)
  23. {
  24. Write-Host "Unable to find mvn.cmd in your PATH (try: choco install maven)"
  25. exit 1
  26. }
  27. $buildDir = Split-Path -Parent $PSCommandPath
  28. $version = $(mvn -f $buildDir/../../pom.xml help:evaluate -Dexpression="project.version" -q -DforceStdout)
  29. $semVerNo = $version -replace '(\d+\.\d+\.\d+).*','$1'
  30. $revisionNo = $(git rev-list --count HEAD)
  31. Write-Output "`$version=$version"
  32. Write-Output "`$semVerNo=$semVerNo"
  33. Write-Output "`$revisionNo=$revisionNo"
  34. Write-Output "`$buildDir=$buildDir"
  35. Write-Output "`$Env:JAVA_HOME=$Env:JAVA_HOME"
  36. $copyright = "(C) $CopyrightStartYear - $((Get-Date).Year) $Vendor"
  37. # compile
  38. &mvn -B -f $buildDir/../../pom.xml clean package -DskipTests -Pwin
  39. Copy-Item "$buildDir\..\..\target\$MainJarGlob.jar" -Destination "$buildDir\..\..\target\mods"
  40. # add runtime
  41. $runtimeImagePath = '.\runtime'
  42. if ($clean -and (Test-Path -Path $runtimeImagePath)) {
  43. Remove-Item -Path $runtimeImagePath -Force -Recurse
  44. }
  45. ## download jfx jmods
  46. $jmodsVersion='20.0.2'
  47. $jmodsUrl = "https://download2.gluonhq.com/openjfx/${jmodsVersion}/openjfx-${jmodsVersion}_windows-x64_bin-jmods.zip"
  48. $jfxJmodsChecksum = '18625bbc13c57dbf802486564247a8d8cab72ec558c240a401bf6440384ebd77'
  49. $jfxJmodsZip = '.\resources\jfxJmods.zip'
  50. if( !(Test-Path -Path $jfxJmodsZip) ) {
  51. Write-Output "Downloading ${jmodsUrl}..."
  52. Invoke-WebRequest $jmodsUrl -OutFile $jfxJmodsZip # redirects are followed by default
  53. }
  54. $jmodsChecksumActual = $(Get-FileHash -Path $jfxJmodsZip -Algorithm SHA256).Hash
  55. if( $jmodsChecksumActual -ne $jfxJmodsChecksum ) {
  56. Write-Error "Checksum mismatch for jfxJmods.zip. Expected: $jfxJmodsChecksum, actual: $jmodsChecksumActual"
  57. exit 1;
  58. }
  59. Expand-Archive -Path $jfxJmodsZip -Force -DestinationPath ".\resources\"
  60. Remove-Item -Recurse -Force -Path ".\resources\javafx-jmods"
  61. Move-Item -Force -Path ".\resources\javafx-jmods-*" -Destination ".\resources\javafx-jmods" -ErrorAction Stop
  62. & "$Env:JAVA_HOME\bin\jlink" `
  63. --verbose `
  64. --output runtime `
  65. --module-path "$Env:JAVA_HOME/jmods;$buildDir/resources/javafx-jmods" `
  66. --add-modules java.base,java.desktop,java.instrument,java.logging,java.naming,java.net.http,java.scripting,java.sql,java.xml,jdk.unsupported,jdk.crypto.ec,jdk.accessibility,jdk.management.jfr,javafx.base,javafx.graphics,javafx.controls,javafx.fxml `
  67. --strip-native-commands `
  68. --no-header-files `
  69. --no-man-pages `
  70. --strip-debug `
  71. --compress=1
  72. $appPath = ".\$AppName"
  73. if ($clean -and (Test-Path -Path $appPath)) {
  74. Remove-Item -Path $appPath -Force -Recurse
  75. }
  76. # create app dir
  77. & "$Env:JAVA_HOME\bin\jpackage" `
  78. --verbose `
  79. --type app-image `
  80. --runtime-image runtime `
  81. --input ../../target/libs `
  82. --module-path ../../target/mods `
  83. --module $ModuleAndMainClass `
  84. --dest . `
  85. --name $AppName `
  86. --vendor $Vendor `
  87. --copyright $copyright `
  88. --java-options "--enable-preview" `
  89. --java-options "--enable-native-access=org.cryptomator.jfuse.win" `
  90. --java-options "-Xss5m" `
  91. --java-options "-Xmx256m" `
  92. --java-options "-Dcryptomator.appVersion=`"$semVerNo`"" `
  93. --app-version "$semVerNo.$revisionNo" `
  94. --java-options "-Dfile.encoding=`"utf-8`"" `
  95. --java-options "-Djava.net.useSystemProxies=true" `
  96. --java-options "-Dcryptomator.logDir=`"@{localappdata}/$AppName`"" `
  97. --java-options "-Dcryptomator.pluginDir=`"@{appdata}/$AppName/Plugins`"" `
  98. --java-options "-Dcryptomator.settingsPath=`"@{appdata}/$AppName/settings.json;@{userhome}/AppData/Roaming/$AppName/settings.json`"" `
  99. --java-options "-Dcryptomator.ipcSocketPath=`"@{localappdata}/$AppName/ipc.socket`"" `
  100. --java-options "-Dcryptomator.p12Path=`"@{appdata}/$AppName/key.p12;@{userhome}/AppData/Roaming/$AppName/key.p12`"" `
  101. --java-options "-Dcryptomator.mountPointsDir=`"@{userhome}/$AppName`"" `
  102. --java-options "-Dcryptomator.loopbackAlias=`"$LoopbackAlias`"" `
  103. --java-options "-Dcryptomator.integrationsWin.autoStartShellLinkName=`"$AppName`"" `
  104. --java-options "-Dcryptomator.integrationsWin.keychainPaths=`"@{appdata}/$AppName/keychain.json;@{userhome}/AppData/Roaming/$AppName/keychain.json`"" `
  105. --java-options "-Dcryptomator.showTrayIcon=true" `
  106. --java-options "-Dcryptomator.buildNumber=`"msi-$revisionNo`"" `
  107. --resource-dir resources `
  108. --icon resources/$AppName.ico
  109. #Create RTF license for msi
  110. &mvn -B -f $buildDir/../../pom.xml license:add-third-party `
  111. "-Dlicense.thirdPartyFilename=license.rtf" `
  112. "-Dlicense.fileTemplate=$buildDir\resources\licenseTemplate.ftl" `
  113. "-Dlicense.outputDirectory=$buildDir\resources\" `
  114. "-Dlicense.includedScopes=compile" `
  115. "-Dlicense.excludedGroups=^org\.cryptomator" `
  116. "-Dlicense.failOnMissing=true" `
  117. "-Dlicense.licenseMergesUrl=file:///$buildDir/../../license/merges"
  118. # patch app dir
  119. Copy-Item "contrib\*" -Destination "$AppName"
  120. attrib -r "$AppName\$AppName.exe"
  121. # patch batch script to set hostfile
  122. $webDAVPatcher = "$AppName\patchWebDAV.bat"
  123. try {
  124. (Get-Content $webDAVPatcher ) -replace '::REPLACE ME', "SET LOOPBACK_ALIAS=`"$LoopbackAlias`"" | Set-Content $webDAVPatcher
  125. } catch {
  126. Write-Host "Failed to set LOOPBACK_ALIAS for patchWebDAV.bat"
  127. exit 1
  128. }
  129. # create .msi
  130. $Env:JP_WIXWIZARD_RESOURCES = "$buildDir\resources"
  131. & "$Env:JAVA_HOME\bin\jpackage" `
  132. --verbose `
  133. --type msi `
  134. --win-upgrade-uuid $UpgradeUUID `
  135. --app-image $AppName `
  136. --dest installer `
  137. --name $AppName `
  138. --vendor $Vendor `
  139. --copyright $copyright `
  140. --app-version "$semVerNo.$revisionNo" `
  141. --win-menu `
  142. --win-dir-chooser `
  143. --win-shortcut-prompt `
  144. --win-menu-group $AppName `
  145. --resource-dir resources `
  146. --license-file resources/license.rtf `
  147. --win-update-url $UpdateUrl `
  148. --about-url $AboutUrl `
  149. --file-associations resources/FAvaultFile.properties
  150. #Create RTF license for bundle
  151. &mvn -B -f $buildDir/../../pom.xml license:add-third-party `
  152. "-Dlicense.thirdPartyFilename=license.rtf" `
  153. "-Dlicense.fileTemplate=$buildDir\bundle\resources\licenseTemplate.ftl" `
  154. "-Dlicense.outputDirectory=$buildDir\bundle\resources\" `
  155. "-Dlicense.includedScopes=compile" `
  156. "-Dlicense.excludedGroups=^org\.cryptomator" `
  157. "-Dlicense.failOnMissing=true" `
  158. "-Dlicense.licenseMergesUrl=file:///$buildDir/../../license/merges"
  159. # download Winfsp
  160. $winfspMsiUrl= (Select-String -Path ".\bundle\resources\winFspMetaData.wxi" -Pattern '<\?define BundledWinFspDownloadLink="(.+)".*?>').Matches.Groups[1].Value
  161. Write-Output "Downloading ${winfspMsiUrl}..."
  162. Invoke-WebRequest $winfspMsiUrl -OutFile ".\bundle\resources\winfsp.msi" # redirects are followed by default
  163. # copy MSI to bundle resources
  164. Copy-Item ".\installer\$AppName-*.msi" -Destination ".\bundle\resources\$AppName.msi"
  165. # create bundle including winfsp
  166. & "$env:WIX\bin\candle.exe" .\bundle\bundleWithWinfsp.wxs -ext WixBalExtension -ext WixUtilextension -out bundle\ `
  167. -dBundleVersion="$semVerNo.$revisionNo" `
  168. -dBundleVendor="$Vendor" `
  169. -dBundleCopyright="$copyright" `
  170. -dAboutUrl="$AboutUrl" `
  171. -dHelpUrl="$HelpUrl" `
  172. -dUpdateUrl="$UpdateUrl"
  173. & "$env:WIX\bin\light.exe" -b . .\bundle\BundlewithWinfsp.wixobj -ext WixBalExtension -ext WixUtilextension -out installer\$AppName-Installer.exe