win-debug.yml 9.4 KB

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