build.ps1 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # check preconditions
  2. if ((Get-Command "git" -ErrorAction SilentlyContinue) -eq $null)
  3. {
  4. Write-Host "Unable to find git.exe in your PATH (try: choco install git)"
  5. exit 1
  6. }
  7. if ((Get-Command "mvn" -ErrorAction SilentlyContinue) -eq $null)
  8. {
  9. Write-Host "Unable to find mvn.cmd in your PATH (try: choco install maven)"
  10. exit 1
  11. }
  12. $buildDir = Split-Path -Parent $PSCommandPath
  13. $version = $(mvn -f $buildDir/../../pom.xml help:evaluate -Dexpression="project.version" -q -DforceStdout)
  14. $semVerNo = $version -replace '(\d\.\d\.\d).*','$1'
  15. $revisionNo = $(git rev-list --count HEAD)
  16. Write-Output "`$version=$version"
  17. Write-Output "`$semVerNo=$semVerNo"
  18. Write-Output "`$revisionNo=$revisionNo"
  19. Write-Output "`$buildDir=$buildDir"
  20. Write-Output "`$Env:JAVA_HOME=$Env:JAVA_HOME"
  21. # compile
  22. &mvn -B -f $buildDir/../../pom.xml clean package -DskipTests -Pwin
  23. Copy-Item "$buildDir\..\..\target\cryptomator-*.jar" -Destination "$buildDir\..\..\target\mods"
  24. # add runtime
  25. & "$Env:JAVA_HOME\bin\jlink" `
  26. --verbose `
  27. --output runtime `
  28. --module-path "$Env:JAVA_HOME/jmods" `
  29. --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 `
  30. --no-header-files `
  31. --no-man-pages `
  32. --strip-debug `
  33. --compress=1
  34. # create app dir
  35. & "$Env:JAVA_HOME\bin\jpackage" `
  36. --verbose `
  37. --type app-image `
  38. --runtime-image runtime `
  39. --input ../../target/libs `
  40. --module-path ../../target/mods `
  41. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator `
  42. --dest . `
  43. --name Cryptomator `
  44. --vendor "Skymatic GmbH" `
  45. --copyright "(C) 2016 - 2022 Skymatic GmbH" `
  46. --java-options "-Xss5m" `
  47. --java-options "-Xmx256m" `
  48. --java-options "-Dcryptomator.appVersion=`"$semVerNo`"" `
  49. --app-version "$semVerNo.$revisionNo" `
  50. --java-options "-Dfile.encoding=`"utf-8`"" `
  51. --java-options "-Dcryptomator.logDir=`"~/AppData/Roaming/Cryptomator`"" `
  52. --java-options "-Dcryptomator.pluginDir=`"~/AppData/Roaming/Cryptomator/Plugins`"" `
  53. --java-options "-Dcryptomator.settingsPath=`"~/AppData/Roaming/Cryptomator/settings.json`"" `
  54. --java-options "-Dcryptomator.ipcSocketPath=`"~/AppData/Roaming/Cryptomator/ipc.socket`"" `
  55. --java-options "-Dcryptomator.keychainPath=`"~/AppData/Roaming/Cryptomator/keychain.json`"" `
  56. --java-options "-Dcryptomator.mountPointsDir=`"~/Cryptomator`"" `
  57. --java-options "-Dcryptomator.showTrayIcon=true" `
  58. --java-options "-Dcryptomator.buildNumber=`"msi-$revisionNo`"" `
  59. --resource-dir resources `
  60. --icon resources/Cryptomator.ico
  61. # patch app dir
  62. Copy-Item "contrib\*" -Destination "Cryptomator"
  63. attrib -r "Cryptomator\Cryptomator.exe"
  64. # create .msi bundle
  65. $Env:JP_WIXWIZARD_RESOURCES = "$buildDir\resources"
  66. & "$Env:JAVA_HOME\bin\jpackage" `
  67. --verbose `
  68. --type msi `
  69. --win-upgrade-uuid bda45523-42b1-4cae-9354-a45475ed4775 `
  70. --app-image Cryptomator `
  71. --dest installer `
  72. --name Cryptomator `
  73. --vendor "Skymatic GmbH" `
  74. --copyright "(C) 2016 - 2022 Skymatic GmbH" `
  75. --app-version "$semVerNo" `
  76. --win-menu `
  77. --win-dir-chooser `
  78. --win-shortcut-prompt `
  79. --win-update-url "https:\\cryptomator.org" `
  80. --win-menu-group Cryptomator `
  81. --resource-dir resources `
  82. --license-file resources/license.rtf `
  83. --file-associations resources/FAvaultFile.properties