appimage.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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_DIST: 'zulu'
  12. JAVA_VERSION: '21.0.2+13'
  13. jobs:
  14. get-version:
  15. uses: ./.github/workflows/get-version.yml
  16. with:
  17. version: ${{ inputs.version }}
  18. build:
  19. name: Build AppImage
  20. runs-on: ${{ matrix.os }}
  21. needs: [get-version]
  22. strategy:
  23. fail-fast: false
  24. matrix:
  25. include:
  26. - os: ubuntu-latest
  27. appimage-suffix: x86_64
  28. openjfx-url: 'https://download2.gluonhq.com/openjfx/21.0.1/openjfx-21.0.1_linux-x64_bin-jmods.zip'
  29. openjfx-sha: '7baed11ca56d5fee85995fa6612d4299f1e8b7337287228f7f12fd50407c56f8'
  30. - os: [self-hosted, Linux, ARM64]
  31. appimage-suffix: aarch64
  32. openjfx-url: 'https://download2.gluonhq.com/openjfx/21.0.1/openjfx-21.0.1_linux-aarch64_bin-jmods.zip'
  33. openjfx-sha: '871e7b9d7af16aef2e55c1b7830d0e0b2503b13dd8641374ba7e55ecb81d2ef9'
  34. steps:
  35. - uses: actions/checkout@v4
  36. - name: Setup Java
  37. uses: actions/setup-java@v4
  38. with:
  39. distribution: ${{ env.JAVA_DIST }}
  40. java-version: ${{ env.JAVA_VERSION }}
  41. check-latest: true
  42. cache: 'maven'
  43. - name: Download OpenJFX jmods
  44. id: download-jmods
  45. run: |
  46. curl -L ${{ matrix.openjfx-url }} -o openjfx-jmods.zip
  47. echo "${{ matrix.openjfx-sha }} openjfx-jmods.zip" | shasum -a256 --check
  48. mkdir -p openjfx-jmods
  49. unzip -j openjfx-jmods.zip \*/javafx.base.jmod \*/javafx.controls.jmod \*/javafx.fxml.jmod \*/javafx.graphics.jmod -d openjfx-jmods
  50. - name: Ensure major jfx version in pom and in jmods is the same
  51. run: |
  52. JMOD_VERSION=$(jmod describe openjfx-jmods/javafx.base.jmod | head -1)
  53. JMOD_VERSION=${JMOD_VERSION#*@}
  54. JMOD_VERSION=${JMOD_VERSION%%.*}
  55. POM_JFX_VERSION=$(mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout)
  56. POM_JFX_VERSION=${POM_JFX_VERSION#*@}
  57. POM_JFX_VERSION=${POM_JFX_VERSION%%.*}
  58. if [ $POM_JFX_VERSION -ne $JMOD_VERSION_AMD64 ]; then
  59. >&2 echo "Major JavaFX version in pom.xml (${POM_JFX_VERSION}) != amd64 jmod version (${JMOD_VERSION})"
  60. exit 1
  61. fi
  62. - name: Set version
  63. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  64. - name: Run maven
  65. run: mvn -B clean package -Plinux -DskipTests
  66. - name: Patch target dir
  67. run: |
  68. cp LICENSE.txt target
  69. cp target/cryptomator-*.jar target/mods
  70. - name: Run jlink
  71. #Remark: no compression is applied for improved build compression later (here appimage)
  72. run: >
  73. ${JAVA_HOME}/bin/jlink
  74. --verbose
  75. --output runtime
  76. --module-path "${JAVA_HOME}/jmods:openjfx-jmods"
  77. --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.security.auth,jdk.accessibility,jdk.management.jfr,jdk.net
  78. --strip-native-commands
  79. --no-header-files
  80. --no-man-pages
  81. --strip-debug
  82. --compress zip-0
  83. - name: Prepare additional launcher
  84. run: envsubst '${SEMVER_STR} ${REVISION_NUM}' < dist/linux/launcher-gtk2.properties > launcher-gtk2.properties
  85. env:
  86. SEMVER_STR: ${{ needs.get-version.outputs.semVerStr }}
  87. REVISION_NUM: ${{ needs.get-version.outputs.revNum }}
  88. - name: Run jpackage
  89. run: >
  90. ${JAVA_HOME}/bin/jpackage
  91. --verbose
  92. --type app-image
  93. --runtime-image runtime
  94. --input target/libs
  95. --module-path target/mods
  96. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  97. --dest appdir
  98. --name Cryptomator
  99. --vendor "Skymatic GmbH"
  100. --copyright "(C) 2016 - 2024 Skymatic GmbH"
  101. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  102. --java-options "--enable-preview"
  103. --java-options "--enable-native-access=org.cryptomator.jfuse.linux.amd64,org.cryptomator.jfuse.linux.aarch64,org.purejava.appindicator"
  104. --java-options "-Xss5m"
  105. --java-options "-Xmx256m"
  106. --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
  107. --java-options "-Dfile.encoding=\"utf-8\""
  108. --java-options "-Djava.net.useSystemProxies=true"
  109. --java-options "-Dcryptomator.logDir=\"@{userhome}/.local/share/Cryptomator/logs\""
  110. --java-options "-Dcryptomator.pluginDir=\"@{userhome}/.local/share/Cryptomator/plugins\""
  111. --java-options "-Dcryptomator.settingsPath=\"@{userhome}/.config/Cryptomator/settings.json:@{userhome}/.Cryptomator/settings.json\""
  112. --java-options "-Dcryptomator.p12Path=\"@{userhome}/.config/Cryptomator/key.p12\""
  113. --java-options "-Dcryptomator.ipcSocketPath=\"@{userhome}/.config/Cryptomator/ipc.socket\""
  114. --java-options "-Dcryptomator.mountPointsDir=\"@{userhome}/.local/share/Cryptomator/mnt\""
  115. --java-options "-Dcryptomator.showTrayIcon=true"
  116. --java-options "-Dcryptomator.integrationsLinux.trayIconsDir=\"@{appdir}/usr/share/icons/hicolor/symbolic/apps\""
  117. --java-options "-Dcryptomator.buildNumber=\"appimage-${{ needs.get-version.outputs.revNum }}\""
  118. --add-launcher Cryptomator-gtk2=launcher-gtk2.properties
  119. --resource-dir dist/linux/resources
  120. - name: Patch Cryptomator.AppDir
  121. run: |
  122. mv appdir/Cryptomator Cryptomator.AppDir
  123. cp -r dist/linux/appimage/resources/AppDir/* Cryptomator.AppDir/
  124. cp dist/linux/common/org.cryptomator.Cryptomator256.png Cryptomator.AppDir/usr/share/icons/hicolor/256x256/apps/org.cryptomator.Cryptomator.png
  125. cp dist/linux/common/org.cryptomator.Cryptomator512.png Cryptomator.AppDir/usr/share/icons/hicolor/512x512/apps/org.cryptomator.Cryptomator.png
  126. cp dist/linux/common/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg
  127. cp dist/linux/common/org.cryptomator.Cryptomator.tray.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.tray.svg
  128. cp dist/linux/common/org.cryptomator.Cryptomator.tray-unlocked.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.tray-unlocked.svg
  129. cp dist/linux/common/org.cryptomator.Cryptomator.tray.svg Cryptomator.AppDir/usr/share/icons/hicolor/symbolic/apps/org.cryptomator.Cryptomator.tray-symbolic.svg
  130. cp dist/linux/common/org.cryptomator.Cryptomator.tray-unlocked.svg Cryptomator.AppDir/usr/share/icons/hicolor/symbolic/apps/org.cryptomator.Cryptomator.tray-unlocked-symbolic.svg
  131. cp dist/linux/common/org.cryptomator.Cryptomator.metainfo.xml Cryptomator.AppDir/usr/share/metainfo/org.cryptomator.Cryptomator.metainfo.xml
  132. cp dist/linux/common/org.cryptomator.Cryptomator.desktop Cryptomator.AppDir/usr/share/applications/org.cryptomator.Cryptomator.desktop
  133. cp dist/linux/common/application-vnd.cryptomator.vault.xml Cryptomator.AppDir/usr/share/mime/packages/application-vnd.cryptomator.vault.xml
  134. ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/org.cryptomator.Cryptomator.svg
  135. ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/Cryptomator.svg
  136. ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/.DirIcon
  137. ln -s usr/share/applications/org.cryptomator.Cryptomator.desktop Cryptomator.AppDir/Cryptomator.desktop
  138. ln -s bin/cryptomator.sh Cryptomator.AppDir/AppRun
  139. - name: Download AppImageKit
  140. run: |
  141. curl -L https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-${{ matrix.appimage-suffix }}.AppImage -o appimagetool.AppImage
  142. chmod +x appimagetool.AppImage
  143. ./appimagetool.AppImage --appimage-extract
  144. - name: Prepare GPG-Agent for signing with key 615D449FE6E6A235
  145. run: |
  146. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  147. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --dry-run --sign README.md
  148. env:
  149. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  150. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  151. - name: Build AppImage
  152. run: >
  153. ./squashfs-root/AppRun Cryptomator.AppDir cryptomator-${{ needs.get-version.outputs.semVerStr }}-${{ matrix.appimage-suffix }}.AppImage
  154. -u 'gh-releases-zsync|cryptomator|cryptomator|latest|cryptomator-*-${{ matrix.appimage-suffix }}.AppImage.zsync'
  155. --sign --sign-key=615D449FE6E6A235 --sign-args="--batch --pinentry-mode loopback"
  156. - name: Create detached GPG signatures
  157. run: |
  158. gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator-*.AppImage
  159. gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator-*.AppImage.zsync
  160. - name: Upload artifacts
  161. uses: actions/upload-artifact@v4
  162. with:
  163. name: appimage-${{ matrix.appimage-suffix }}
  164. path: |
  165. cryptomator-*.AppImage
  166. cryptomator-*.AppImage.zsync
  167. cryptomator-*.asc
  168. if-no-files-found: error
  169. - name: Publish AppImage on GitHub Releases
  170. if: startsWith(github.ref, 'refs/tags/')
  171. uses: softprops/action-gh-release@v1
  172. with:
  173. fail_on_unmatched_files: true
  174. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  175. files: |
  176. cryptomator-*.AppImage
  177. cryptomator-*.zsync
  178. cryptomator-*.asc