win-debug.yml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. name: Build Windows Debug Installer
  2. on:
  3. workflow_dispatch:
  4. inputs:
  5. version:
  6. description: 'Version'
  7. required: false
  8. env:
  9. JAVA_VERSION: 19
  10. JAVA_DIST: 'zulu'
  11. JAVA_CACHE: 'maven'
  12. defaults:
  13. run:
  14. shell: bash
  15. jobs:
  16. get-version:
  17. uses: ./.github/workflows/get-version.yml
  18. with:
  19. version: ${{ inputs.version }}
  20. build-msi:
  21. name: Build .msi Installer
  22. runs-on: windows-latest
  23. needs: [get-version]
  24. env:
  25. LOOPBACK_ALIAS: 'cryptomator-vault'
  26. steps:
  27. - uses: actions/checkout@v3
  28. - name: Setup Java
  29. uses: actions/setup-java@v3
  30. with:
  31. distribution: ${{ env.JAVA_DIST }}
  32. java-version: ${{ env.JAVA_VERSION }}
  33. java-package: 'jdk+fx'
  34. cache: ${{ env.JAVA_CACHE }}
  35. - name: Ensure major jfx version in pom equals in jdk
  36. shell: pwsh
  37. run: |
  38. $jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."
  39. $jfxJdkVersion = ((Get-Content -path "${env:JAVA_HOME}/lib/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=','') -split "\."
  40. if ($jfxPomVersion[0] -ne $jfxJdkVersion[0]) {
  41. Write-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version in JDK($($jfxJdkVersion[0])) "
  42. exit 1
  43. }
  44. - name: Set version
  45. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  46. - name: Run maven
  47. run: mvn -B clean package -Pdependency-check,win -DskipTests
  48. - name: Patch target dir
  49. run: |
  50. cp LICENSE.txt target
  51. cp target/cryptomator-*.jar target/mods
  52. - name: Run jlink
  53. run: >
  54. ${JAVA_HOME}/bin/jlink
  55. --verbose
  56. --output runtime
  57. --module-path "${JAVA_HOME}/jmods"
  58. --add-modules java.base,java.desktop,java.instrument,java.logging,java.naming,java.net.http,java.scripting,java.sql,java.xml,javafx.base,javafx.graphics,javafx.controls,javafx.fxml,jdk.unsupported,jdk.crypto.ec,jdk.accessibility,jdk.management.jfr
  59. --strip-native-commands
  60. --no-header-files
  61. --no-man-pages
  62. --strip-debug
  63. --compress=1
  64. - name: Run jpackage
  65. run: >
  66. ${JAVA_HOME}/bin/jpackage
  67. --verbose
  68. --type app-image
  69. --runtime-image runtime
  70. --input target/libs
  71. --module-path target/mods
  72. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  73. --dest appdir
  74. --name Cryptomator
  75. --vendor "Skymatic GmbH"
  76. --copyright "(C) 2016 - 2023 Skymatic GmbH"
  77. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  78. --win-console
  79. --java-options "--enable-preview"
  80. --java-options "--enable-native-access=org.cryptomator.jfuse.win"
  81. --java-options "-Xss5m"
  82. --java-options "-Xmx256m"
  83. --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
  84. --java-options "-Dfile.encoding=\"utf-8\""
  85. --java-options "-Dcryptomator.logDir=\"~/AppData/Roaming/Cryptomator\""
  86. --java-options "-Dcryptomator.pluginDir=\"~/AppData/Roaming/Cryptomator/Plugins\""
  87. --java-options "-Dcryptomator.settingsPath=\"~/AppData/Roaming/Cryptomator/settings.json\""
  88. --java-options "-Dcryptomator.p12Path=\"~/AppData/Roaming/Cryptomator/key.p12\""
  89. --java-options "-Dcryptomator.ipcSocketPath=\"~/AppData/Roaming/Cryptomator/ipc.socket\""
  90. --java-options "-Dcryptomator.mountPointsDir=\"~/Cryptomator\""
  91. --java-options "-Dcryptomator.loopbackAlias=\"${{ env.LOOPBACK_ALIAS }}\""
  92. --java-options "-Dcryptomator.showTrayIcon=true"
  93. --java-options "-Dcryptomator.buildNumber=\"msi-${{ needs.get-version.outputs.revNum }}-dbg\""
  94. --java-options "-Dcryptomator.integrationsWin.autoStartShellLinkName=\"Cryptomator\""
  95. --java-options "-Dcryptomator.integrationsWin.keychainPaths=\"~/AppData/Roaming/Cryptomator/keychain.json\""
  96. --java-options "-Djavafx.verbose=true"
  97. --resource-dir dist/win/resources
  98. --icon dist/win/resources/Cryptomator.ico
  99. - name: Patch Application Directory
  100. run: |
  101. cp dist/win/contrib/* appdir/Cryptomator
  102. - name: Set LOOPBACK_ALIAS in patchWebDAV.bat
  103. shell: pwsh
  104. run: |
  105. $patchScript = "appdir\Cryptomator\patchWebDAV.bat"
  106. try {
  107. (Get-Content $patchScript ) -replace '::REPLACE ME', "SET LOOPBACK_ALIAS=`"${{ env.LOOPBACK_ALIAS}}`"" | Set-Content $patchScript
  108. } catch {
  109. Write-Host "Failed to set LOOPBACK_ALIAS for patchWebDAV.bat"
  110. exit 1
  111. }
  112. - name: Fix permissions
  113. run: |
  114. attrib -r appdir/Cryptomator/Cryptomator.exe
  115. shell: pwsh
  116. - name: Extract integrations DLL for code signing
  117. shell: pwsh
  118. run: gci ./appdir/Cryptomator/app/mods/ -File integrations-win-*.jar | ForEach-Object {Set-Location -Path $_.Directory; jar --file=$($_.FullName) --extract integrations.dll }
  119. - name: Codesign
  120. uses: skymatic/code-sign-action@v2
  121. with:
  122. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  123. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  124. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  125. description: Cryptomator
  126. timestampUrl: 'http://timestamp.digicert.com'
  127. folder: appdir/Cryptomator
  128. recursive: true
  129. - name: Repack signed DLL into jar
  130. shell: pwsh
  131. run: |
  132. gci ./appdir/Cryptomator/app/mods/ -File integrations-win-*.jar | ForEach-Object {Set-Location -Path $_.Directory; jar --file=$($_.FullName) --update integrations.dll; Remove-Item integrations.dll}
  133. - name: Generate license for MSI
  134. run: >
  135. mvn -B license:add-third-party
  136. "-Dlicense.thirdPartyFilename=license.rtf"
  137. "-Dlicense.outputDirectory=dist/win/resources"
  138. "-Dlicense.fileTemplate=dist/win/resources/licenseTemplate.ftl"
  139. "-Dlicense.includedScopes=compile"
  140. "-Dlicense.excludedGroups=^org\.cryptomator"
  141. "-Dlicense.failOnMissing=true"
  142. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  143. shell: pwsh
  144. - name: Create MSI
  145. run: >
  146. ${JAVA_HOME}/bin/jpackage
  147. --verbose
  148. --type msi
  149. --win-upgrade-uuid bda45523-42b1-4cae-9354-a45475ed4775
  150. --app-image appdir/Cryptomator
  151. --dest installer
  152. --name Cryptomator
  153. --vendor "Skymatic GmbH"
  154. --copyright "(C) 2016 - 2023 Skymatic GmbH"
  155. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum}}"
  156. --win-menu
  157. --win-dir-chooser
  158. --win-shortcut-prompt
  159. --win-update-url "https:\\cryptomator.org"
  160. --win-menu-group Cryptomator
  161. --resource-dir dist/win/resources
  162. --license-file dist/win/resources/license.rtf
  163. --file-associations dist/win/resources/FAvaultFile.properties
  164. env:
  165. JP_WIXWIZARD_RESOURCES: ${{ github.workspace }}/dist/win/resources # requires abs path, used in resources/main.wxs
  166. - name: Codesign MSI
  167. uses: skymatic/code-sign-action@v2
  168. with:
  169. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  170. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  171. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  172. description: Cryptomator Installer
  173. timestampUrl: 'http://timestamp.digicert.com'
  174. folder: installer
  175. - name: Add possible alpha/beta tags to installer name
  176. run: mv installer/Cryptomator-*.msi Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.msi
  177. - name: Create detached GPG signature with key 615D449FE6E6A235
  178. run: |
  179. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  180. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.msi
  181. env:
  182. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  183. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  184. - name: Upload artifacts
  185. uses: actions/upload-artifact@v3
  186. with:
  187. name: msi
  188. path: |
  189. Cryptomator-*.msi
  190. Cryptomator-*.asc
  191. if-no-files-found: error