build.ps1 6.0 KB

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