build.ps1 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. --strip-native-commands `
  39. --no-header-files `
  40. --no-man-pages `
  41. --strip-debug `
  42. --compress=1
  43. $appPath = '.\Cryptomator'
  44. if ($clean -and (Test-Path -Path $appPath)) {
  45. Remove-Item -Path $appPath -Force -Recurse
  46. }
  47. # create app dir
  48. & "$Env:JAVA_HOME\bin\jpackage" `
  49. --verbose `
  50. --type app-image `
  51. --runtime-image runtime `
  52. --input ../../target/libs `
  53. --module-path ../../target/mods `
  54. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator `
  55. --dest . `
  56. --name Cryptomator `
  57. --vendor $vendor `
  58. --copyright $copyright `
  59. --java-options "-Xss5m" `
  60. --java-options "-Xmx256m" `
  61. --java-options "-Dcryptomator.appVersion=`"$semVerNo`"" `
  62. --app-version "$semVerNo.$revisionNo" `
  63. --java-options "-Dfile.encoding=`"utf-8`"" `
  64. --java-options "-Dcryptomator.logDir=`"~/AppData/Roaming/Cryptomator`"" `
  65. --java-options "-Dcryptomator.pluginDir=`"~/AppData/Roaming/Cryptomator/Plugins`"" `
  66. --java-options "-Dcryptomator.settingsPath=`"~/AppData/Roaming/Cryptomator/settings.json`"" `
  67. --java-options "-Dcryptomator.ipcSocketPath=`"~/AppData/Roaming/Cryptomator/ipc.socket`"" `
  68. --java-options "-Dcryptomator.keychainPath=`"~/AppData/Roaming/Cryptomator/keychain.json`"" `
  69. --java-options "-Dcryptomator.mountPointsDir=`"~/Cryptomator`"" `
  70. --java-options "-Dcryptomator.showTrayIcon=true" `
  71. --java-options "-Dcryptomator.buildNumber=`"msi-$revisionNo`"" `
  72. --resource-dir resources `
  73. --icon resources/Cryptomator.ico
  74. #Create RTF license for msi
  75. &mvn -B -f $buildDir/../../pom.xml license:add-third-party `
  76. "-Dlicense.thirdPartyFilename=license.rtf" `
  77. "-Dlicense.fileTemplate=$buildDir\resources\licenseTemplate.ftl" `
  78. "-Dlicense.outputDirectory=$buildDir\resources\"
  79. # patch app dir
  80. Copy-Item "contrib\*" -Destination "Cryptomator"
  81. attrib -r "Cryptomator\Cryptomator.exe"
  82. $aboutUrl="https://cryptomator.org"
  83. $updateUrl="https://cryptomator.org/downloads/"
  84. $helpUrl="https://cryptomator.org/contact/"
  85. # create .msi
  86. $Env:JP_WIXWIZARD_RESOURCES = "$buildDir\resources"
  87. & "$Env:JAVA_HOME\bin\jpackage" `
  88. --verbose `
  89. --type msi `
  90. --win-upgrade-uuid bda45523-42b1-4cae-9354-a45475ed4775 `
  91. --app-image Cryptomator `
  92. --dest installer `
  93. --name Cryptomator `
  94. --vendor $vendor `
  95. --copyright $copyright `
  96. --app-version "$semVerNo" `
  97. --win-menu `
  98. --win-dir-chooser `
  99. --win-shortcut-prompt `
  100. --win-update-url $updateUrl `
  101. --win-menu-group Cryptomator `
  102. --resource-dir resources `
  103. --about-url $aboutUrl `
  104. --license-file resources/license.rtf `
  105. --file-associations resources/FAvaultFile.properties
  106. #Create RTF license for bundle
  107. &mvn -B -f $buildDir/../../pom.xml license:add-third-party `
  108. "-Dlicense.thirdPartyFilename=license.rtf" `
  109. "-Dlicense.fileTemplate=$buildDir\bundle\resources\licenseTemplate.ftl" `
  110. "-Dlicense.outputDirectory=$buildDir\bundle\resources\"
  111. # download Winfsp
  112. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
  113. $ProgressPreference = 'SilentlyContinue' # disables Invoke-WebRequest's progress bar, which slows down downloads to a few bytes/s
  114. $winfspMsiUrl = "https://github.com/winfsp/winfsp/releases/download/v1.10/winfsp-1.10.22006.msi"
  115. Write-Output "Downloading ${winfspMsiUrl}..."
  116. Invoke-WebRequest $winfspMsiUrl -OutFile ".\bundle\resources\winfsp.msi" # redirects are followed by default
  117. # copy MSI to bundle resources
  118. Copy-Item ".\installer\Cryptomator-*.msi" -Destination ".\bundle\resources\Cryptomator.msi"
  119. # create bundle including winfsp
  120. & "$env:WIX\bin\candle.exe" .\bundle\bundleWithWinfsp.wxs -ext WixBalExtension -out bundle\ `
  121. -dBundleVersion="$semVerNo.$revisionNo" `
  122. -dBundleVendor="$vendor" `
  123. -dBundleCopyright="$copyright" `
  124. -dAboutUrl="$aboutUrl" `
  125. -dHelpUrl="$helpUrl" `
  126. -dUpdateUrl="$updateUrl"
  127. & "$env:WIX\bin\light.exe" -b . .\bundle\BundlewithWinfsp.wixobj -ext WixBalExtension -out installer\CryptomatorBundle.exe