build.ps1 5.6 KB

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