build.ps1 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 windows upgrade uuid for the installer")][string] $UpgradeUUID,
  5. [Parameter(Mandatory, HelpMessage="Please provide the name of the vendor")][string] $Vendor,
  6. [Parameter(Mandatory, HelpMessage="Please provide the starting year for the copyright notice")][int] $CopyrightStartYear,
  7. [Parameter(Mandatory, HelpMessage="Please provide a help url")][string] $HelpUrl,
  8. [Parameter(Mandatory, HelpMessage="Please provide an update url")][string] $UpdateUrl,
  9. [Parameter(Mandatory, HelpMessage="Please provide an about url")][string] $AboutUrl,
  10. [bool] $clean
  11. )
  12. # check preconditions
  13. if ((Get-Command "git" -ErrorAction SilentlyContinue) -eq $null)
  14. {
  15. Write-Host "Unable to find git.exe in your PATH (try: choco install git)"
  16. exit 1
  17. }
  18. if ((Get-Command "mvn" -ErrorAction SilentlyContinue) -eq $null)
  19. {
  20. Write-Host "Unable to find mvn.cmd in your PATH (try: choco install maven)"
  21. exit 1
  22. }
  23. $buildDir = Split-Path -Parent $PSCommandPath
  24. $version = $(mvn -f $buildDir/../../pom.xml help:evaluate -Dexpression="project.version" -q -DforceStdout)
  25. $semVerNo = $version -replace '(\d\.\d\.\d).*','$1'
  26. $revisionNo = $(git rev-list --count HEAD)
  27. Write-Output "`$version=$version"
  28. Write-Output "`$semVerNo=$semVerNo"
  29. Write-Output "`$revisionNo=$revisionNo"
  30. Write-Output "`$buildDir=$buildDir"
  31. Write-Output "`$Env:JAVA_HOME=$Env:JAVA_HOME"
  32. $copyright = "(C) $CopyrightStartYear - $((Get-Date).Year) $Vendor"
  33. # compile
  34. &mvn -B -f $buildDir/../../pom.xml clean package -DskipTests -Pwin
  35. Copy-Item "$buildDir\..\..\target\$MainJarGlob.jar" -Destination "$buildDir\..\..\target\mods"
  36. # add runtime
  37. $runtimeImagePath = '.\runtime'
  38. if ($clean -and (Test-Path -Path $runtimeImagePath)) {
  39. Remove-Item -Path $runtimeImagePath -Force -Recurse
  40. }
  41. & "$Env:JAVA_HOME\bin\jlink" `
  42. --verbose `
  43. --output runtime `
  44. --module-path "$Env:JAVA_HOME/jmods" `
  45. --add-modules java.base,java.desktop,java.logging,java.naming,java.net.http,java.scripting,java.sql,java.xml,jdk.unsupported,jdk.crypto.ec,jdk.accessibility,jdk.management.jfr `
  46. --strip-native-commands `
  47. --no-header-files `
  48. --no-man-pages `
  49. --strip-debug `
  50. --compress=1
  51. $appPath = ".\$AppName"
  52. if ($clean -and (Test-Path -Path $appPath)) {
  53. Remove-Item -Path $appPath -Force -Recurse
  54. }
  55. # create app dir
  56. & "$Env:JAVA_HOME\bin\jpackage" `
  57. --verbose `
  58. --type app-image `
  59. --runtime-image runtime `
  60. --input ../../target/libs `
  61. --module-path ../../target/mods `
  62. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator `
  63. --dest . `
  64. --name $AppName `
  65. --vendor $Vendor `
  66. --copyright $copyright `
  67. --java-options "-Xss5m" `
  68. --java-options "-Xmx256m" `
  69. --java-options "-Dcryptomator.appVersion=`"$semVerNo`"" `
  70. --app-version "$semVerNo.$revisionNo" `
  71. --java-options "-Dfile.encoding=`"utf-8`"" `
  72. --java-options "-Dcryptomator.logDir=`"~/AppData/Roaming/$AppName`"" `
  73. --java-options "-Dcryptomator.pluginDir=`"~/AppData/Roaming/$AppName/Plugins`"" `
  74. --java-options "-Dcryptomator.settingsPath=`"~/AppData/Roaming/$AppName/settings.json`"" `
  75. --java-options "-Dcryptomator.ipcSocketPath=`"~/AppData/Roaming/$AppName/ipc.socket`"" `
  76. --java-options "-Dcryptomator.keychainPath=`"~/AppData/Roaming/$AppName/keychain.json`"" `
  77. --java-options "-Dcryptomator.mountPointsDir=`"~/$AppName`"" `
  78. --java-options "-Dcryptomator.integrationsWin.autoStartShellLinkName=`"$AppName`"" `
  79. --java-options "-Dcryptomator.showTrayIcon=true" `
  80. --java-options "-Dcryptomator.buildNumber=`"msi-$revisionNo`"" `
  81. --resource-dir resources `
  82. --icon resources/$AppName.ico
  83. #Create RTF license for msi
  84. &mvn -B -f $buildDir/../../pom.xml license:add-third-party `
  85. "-Dlicense.thirdPartyFilename=license.rtf" `
  86. "-Dlicense.fileTemplate=$buildDir\resources\licenseTemplate.ftl" `
  87. "-Dlicense.outputDirectory=$buildDir\resources\" `
  88. "-Dlicense.includedScopes=compile" `
  89. "-Dlicense.excludedGroups=^org\.cryptomator" `
  90. "-Dlicense.failOnMissing=true" `
  91. "-Dlicense.licenseMergesUrl=file:///$buildDir/../../license/merges"
  92. # patch app dir
  93. Copy-Item "contrib\*" -Destination "$AppName"
  94. attrib -r "$AppName\$AppName.exe"
  95. # create .msi
  96. $Env:JP_WIXWIZARD_RESOURCES = "$buildDir\resources"
  97. & "$Env:JAVA_HOME\bin\jpackage" `
  98. --verbose `
  99. --type msi `
  100. --win-upgrade-uuid $UpgradeUUID `
  101. --app-image $AppName `
  102. --dest installer `
  103. --name $AppName `
  104. --vendor $Vendor `
  105. --copyright $copyright `
  106. --app-version "$semVerNo" `
  107. --win-menu `
  108. --win-dir-chooser `
  109. --win-shortcut-prompt `
  110. --win-menu-group $AppName `
  111. --resource-dir resources `
  112. --license-file resources/license.rtf `
  113. --win-update-url $UpdateUrl `
  114. --about-url $AboutUrl `
  115. --file-associations resources/FAvaultFile.properties
  116. #Create RTF license for bundle
  117. &mvn -B -f $buildDir/../../pom.xml license:add-third-party `
  118. "-Dlicense.thirdPartyFilename=license.rtf" `
  119. "-Dlicense.fileTemplate=$buildDir\bundle\resources\licenseTemplate.ftl" `
  120. "-Dlicense.outputDirectory=$buildDir\bundle\resources\" `
  121. "-Dlicense.includedScopes=compile" `
  122. "-Dlicense.excludedGroups=^org\.cryptomator" `
  123. "-Dlicense.failOnMissing=true" `
  124. "-Dlicense.licenseMergesUrl=file:///$buildDir/../../license/merges"
  125. # download Winfsp
  126. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
  127. $ProgressPreference = 'SilentlyContinue' # disables Invoke-WebRequest's progress bar, which slows down downloads to a few bytes/s
  128. $winfspMsiUrl = "https://github.com/winfsp/winfsp/releases/download/v1.10/winfsp-1.10.22006.msi"
  129. Write-Output "Downloading ${winfspMsiUrl}..."
  130. Invoke-WebRequest $winfspMsiUrl -OutFile ".\bundle\resources\winfsp.msi" # redirects are followed by default
  131. # copy MSI to bundle resources
  132. Copy-Item ".\installer\$AppName-*.msi" -Destination ".\bundle\resources\$AppName.msi"
  133. # create bundle including winfsp
  134. & "$env:WIX\bin\candle.exe" .\bundle\bundleWithWinfsp.wxs -ext WixBalExtension -out bundle\ `
  135. -dBundleVersion="$semVerNo.$revisionNo" `
  136. -dBundleVendor="$Vendor" `
  137. -dBundleCopyright="$copyright" `
  138. -dAboutUrl="$AboutUrl" `
  139. -dHelpUrl="$HelpUrl" `
  140. -dUpdateUrl="$UpdateUrl"
  141. & "$env:WIX\bin\light.exe" -b . .\bundle\BundlewithWinfsp.wixobj -ext WixBalExtension -out installer\$AppName-Installer.exe