appimage.yml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. name: Build AppImage
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. inputs:
  7. version:
  8. description: 'Version'
  9. required: false
  10. env:
  11. JAVA_VERSION: 19
  12. jobs:
  13. get-version:
  14. uses: ./.github/workflows/get-version.yml
  15. with:
  16. version: ${{ inputs.version }}
  17. build:
  18. name: Build AppImage
  19. runs-on: ubuntu-latest
  20. needs: [get-version]
  21. steps:
  22. - uses: actions/checkout@v3
  23. - name: Setup Java
  24. uses: actions/setup-java@v3
  25. with:
  26. distribution: 'zulu'
  27. java-version: ${{ env.JAVA_VERSION }}
  28. java-package: 'jdk+fx'
  29. cache: 'maven'
  30. - name: Ensure major jfx version in pom equals in jdk
  31. shell: pwsh
  32. run: |
  33. $jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."
  34. $jfxJdkVersion = ((Get-Content -path "${env:JAVA_HOME}/lib/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=','') -split "\."
  35. if ($jfxPomVersion[0] -ne $jfxJdkVersion[0]) {
  36. Write-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version in JDK($($jfxJdkVersion[0])) "
  37. exit 1
  38. }
  39. - name: Set version
  40. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  41. - name: Run maven
  42. run: mvn -B clean package -Pdependency-check,linux -DskipTests
  43. - name: Patch target dir
  44. run: |
  45. cp LICENSE.txt target
  46. cp dist/linux/launcher.sh target
  47. cp target/cryptomator-*.jar target/mods
  48. - name: Run jlink
  49. run: >
  50. ${JAVA_HOME}/bin/jlink
  51. --verbose
  52. --output runtime
  53. --module-path "${JAVA_HOME}/jmods"
  54. --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
  55. --strip-native-commands
  56. --no-header-files
  57. --no-man-pages
  58. --strip-debug
  59. --compress=1
  60. - name: Prepare additional launcher
  61. run: envsubst '${SEMVER_STR} ${REVISION_NUM}' < dist/linux/launcher-gtk2.properties > launcher-gtk2.properties
  62. env:
  63. SEMVER_STR: ${{ needs.get-version.outputs.semVerStr }}
  64. REVISION_NUM: ${{ needs.get-version.outputs.revNum }}
  65. - name: Run jpackage
  66. run: >
  67. ${JAVA_HOME}/bin/jpackage
  68. --verbose
  69. --type app-image
  70. --runtime-image runtime
  71. --input target/libs
  72. --module-path target/mods
  73. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  74. --dest appdir
  75. --name Cryptomator
  76. --vendor "Skymatic GmbH"
  77. --copyright "(C) 2016 - 2023 Skymatic GmbH"
  78. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  79. --java-options "--enable-preview"
  80. --java-options "--enable-native-access=org.cryptomator.jfuse.linux.amd64,org.cryptomator.jfuse.linux.aarch64"
  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=\"~/.local/share/Cryptomator/logs\""
  86. --java-options "-Dcryptomator.pluginDir=\"~/.local/share/Cryptomator/plugins\""
  87. --java-options "-Dcryptomator.settingsPath=\"~/.config/Cryptomator/settings.json:~/.Cryptomator/settings.json\""
  88. --java-options "-Dcryptomator.p12Path=\"~/.config/Cryptomator/key.p12\""
  89. --java-options "-Dcryptomator.ipcSocketPath=\"~/.config/Cryptomator/ipc.socket\""
  90. --java-options "-Dcryptomator.mountPointsDir=\"~/.local/share/Cryptomator/mnt\""
  91. --java-options "-Dcryptomator.showTrayIcon=false"
  92. --java-options "-Dcryptomator.buildNumber=\"appimage-${{ needs.get-version.outputs.revNum }}\""
  93. --add-launcher Cryptomator-gtk2=launcher-gtk2.properties
  94. --resource-dir dist/linux/resources
  95. - name: Patch Cryptomator.AppDir
  96. run: |
  97. mv appdir/Cryptomator Cryptomator.AppDir
  98. cp -r dist/linux/appimage/resources/AppDir/* Cryptomator.AppDir/
  99. cp dist/linux/common/org.cryptomator.Cryptomator256.png Cryptomator.AppDir/usr/share/icons/hicolor/256x256/apps/org.cryptomator.Cryptomator.png
  100. cp dist/linux/common/org.cryptomator.Cryptomator512.png Cryptomator.AppDir/usr/share/icons/hicolor/512x512/apps/org.cryptomator.Cryptomator.png
  101. cp dist/linux/common/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg
  102. cp dist/linux/common/org.cryptomator.Cryptomator.metainfo.xml Cryptomator.AppDir/usr/share/metainfo/org.cryptomator.Cryptomator.metainfo.xml
  103. cp dist/linux/common/org.cryptomator.Cryptomator.desktop Cryptomator.AppDir/usr/share/applications/org.cryptomator.Cryptomator.desktop
  104. cp dist/linux/common/application-vnd.cryptomator.vault.xml Cryptomator.AppDir/usr/share/mime/packages/application-vnd.cryptomator.vault.xml
  105. ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/org.cryptomator.Cryptomator.svg
  106. ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/Cryptomator.svg
  107. ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/.DirIcon
  108. ln -s usr/share/applications/org.cryptomator.Cryptomator.desktop Cryptomator.AppDir/Cryptomator.desktop
  109. ln -s bin/cryptomator.sh Cryptomator.AppDir/AppRun
  110. - name: Extract libjffi.so # workaround for https://github.com/cryptomator/cryptomator-linux/issues/27
  111. run: |
  112. JFFI_NATIVE_JAR=`ls lib/app/ | grep -e 'jffi-[1-9]\.[0-9]\{1,2\}.[0-9]\{1,2\}-native.jar'`
  113. ${JAVA_HOME}/bin/jar -xf lib/app/${JFFI_NATIVE_JAR} /jni/x86_64-Linux/
  114. mv jni/x86_64-Linux/* lib/app/libjffi.so
  115. working-directory: Cryptomator.AppDir
  116. - name: Download AppImageKit
  117. run: |
  118. curl -L https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-x86_64.AppImage -o appimagetool.AppImage
  119. chmod +x appimagetool.AppImage
  120. ./appimagetool.AppImage --appimage-extract
  121. - name: Prepare GPG-Agent for signing with key 615D449FE6E6A235
  122. run: |
  123. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  124. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --dry-run --sign README.md
  125. env:
  126. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  127. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  128. - name: Build AppImage
  129. run: >
  130. ./squashfs-root/AppRun Cryptomator.AppDir cryptomator-${{ needs.get-version.outputs.semVerStr }}-x86_64.AppImage
  131. -u 'gh-releases-zsync|cryptomator|cryptomator|latest|cryptomator-*-x86_64.AppImage.zsync'
  132. --sign --sign-key=615D449FE6E6A235 --sign-args="--batch --pinentry-mode loopback"
  133. - name: Create detached GPG signatures
  134. run: |
  135. gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator-*.AppImage
  136. gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator-*.AppImage.zsync
  137. - name: Upload artifacts
  138. uses: actions/upload-artifact@v3
  139. with:
  140. name: appimage
  141. path: |
  142. cryptomator-*.AppImage
  143. cryptomator-*.AppImage.zsync
  144. cryptomator-*.asc
  145. if-no-files-found: error
  146. - name: Publish AppImage on GitHub Releases
  147. if: startsWith(github.ref, 'refs/tags/')
  148. uses: softprops/action-gh-release@v1
  149. with:
  150. fail_on_unmatched_files: true
  151. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  152. files: |
  153. cryptomator-*.AppImage
  154. cryptomator-*.zsync
  155. cryptomator-*.asc