debian.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. name: Build Debian Package
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. inputs:
  7. dput:
  8. description: 'Upload to PPA'
  9. required: true
  10. default: false
  11. type: boolean
  12. version:
  13. description: 'Version'
  14. required: false
  15. env:
  16. JAVA_VERSION: 19
  17. OPENJFX_JMODS_AMD64: 'https://download2.gluonhq.com/openjfx/19/openjfx-19_linux-x64_bin-jmods.zip'
  18. OPENJFX_JMODS_AARCH64: 'https://download2.gluonhq.com/openjfx/19/openjfx-19_linux-aarch64_bin-jmods.zip'
  19. jobs:
  20. get-version:
  21. uses: ./.github/workflows/get-version.yml
  22. with:
  23. version: ${{ github.event.inputs.version }}
  24. build:
  25. name: Build Debian Package
  26. runs-on: ubuntu-20.04
  27. needs: [get-version]
  28. steps:
  29. - uses: actions/checkout@v3
  30. - name: Install build tools
  31. run: |
  32. sudo add-apt-repository ppa:coffeelibs/openjdk
  33. sudo apt-get update
  34. sudo apt-get install debhelper devscripts dput coffeelibs-jdk-19 libgtk2.0-0
  35. - name: Setup Java
  36. uses: actions/setup-java@v3
  37. with:
  38. distribution: 'zulu'
  39. java-version: ${{ env.JAVA_VERSION }}
  40. cache: 'maven'
  41. - id: versions
  42. name: Create PPA version string
  43. run: echo "ppaVerStr=${SEM_VER_STR/-/\~}-${REVCOUNT}" >> $GITHUB_OUTPUT
  44. env:
  45. SEM_VER_STR: ${{ needs.get-version.outputs.semVerStr }}
  46. REVCOUNT: ${{ needs.get-version.outputs.revNum }}
  47. - name: Run maven
  48. run: mvn -B clean package -Pdependency-check,linux -DskipTests
  49. - name: Download OpenJFX jmods
  50. id: download-jmods
  51. run: |
  52. curl -L ${{ env.OPENJFX_JMODS_AMD64 }} -o openjfx-amd64.zip
  53. mkdir -p jmods/amd64
  54. unzip -j openjfx-amd64.zip \*/javafx.base.jmod \*/javafx.controls.jmod \*/javafx.fxml.jmod \*/javafx.graphics.jmod -d jmods/amd64
  55. unzip -j jmods/amd64/javafx.base.jmod lib/javafx.properties -d jmods/amd64
  56. curl -L ${{ env.OPENJFX_JMODS_AARCH64 }} -o openjfx-aarch64.zip
  57. mkdir -p jmods/aarch64
  58. unzip -j openjfx-aarch64.zip \*/javafx.base.jmod \*/javafx.controls.jmod \*/javafx.fxml.jmod \*/javafx.graphics.jmod -d jmods/aarch64
  59. unzip -j jmods/aarch64/javafx.base.jmod lib/javafx.properties -d jmods/aarch64
  60. - name: Ensure major jfx version in pom and in jmods is the same
  61. shell: pwsh
  62. run: |
  63. $jfxPomVersion = (&mvn help:evaluate -Dexpression=javafx.version -q -DforceStdout) -split "\."
  64. $jfxJmodVersionAmd64 = (Get-Content -Path "jmods/aarch64/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=',''
  65. $jfxJmodVersionAarch64 = (Get-Content -Path "jmods/aarch64/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=',''
  66. if ($jfxJmodVersionAmd64 -ne $jfxJmodVersionAarch64 ) {
  67. Write-Error "JavaFX Jmods for aarch64 and amd64 are different major versions"
  68. exit 1
  69. }
  70. if ($jfxPomVersion[0] -ne $jfxJmodVersionAmd64) {
  71. Out-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version of Jmods(${jfxJmodVersion}) "
  72. exit 1
  73. }
  74. - name: Create orig.tar.gz with common/ libs/ mods/ jmods/
  75. run: |
  76. mkdir pkgdir
  77. cp -r target/libs pkgdir
  78. cp -r target/mods pkgdir
  79. cp -r jmods pkgdir
  80. cp -r dist/linux/common/ pkgdir
  81. cp target/cryptomator-*.jar pkgdir/mods
  82. tar -cJf cryptomator_${{ steps.versions.outputs.ppaVerStr }}.orig.tar.xz -C pkgdir .
  83. - name: Patch and rename pkgdir
  84. run: |
  85. cp -r dist/linux/debian/ pkgdir
  86. export RFC2822_TIMESTAMP=`date --rfc-2822`
  87. envsubst '${SEMVER_STR} ${VERSION_NUM} ${REVISION_NUM}' < dist/linux/debian/rules > pkgdir/debian/rules
  88. envsubst '${PPA_VERSION} ${RFC2822_TIMESTAMP}' < dist/linux/debian/changelog > pkgdir/debian/changelog
  89. find . -name "*.jar" >> pkgdir/debian/source/include-binaries
  90. mv pkgdir cryptomator_${{ steps.versions.outputs.ppaVerStr }}
  91. env:
  92. SEMVER_STR: ${{ needs.get-version.outputs.semVerStr }}
  93. VERSION_NUM: ${{ needs.get-version.outputs.semVerNum }}
  94. REVISION_NUM: ${{ needs.get-version.outputs.revNum }}
  95. PPA_VERSION: ${{ steps.versions.outputs.ppaVerStr }}-0ppa1
  96. - name: Prepare GPG-Agent for signing with key 615D449FE6E6A235
  97. run: |
  98. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  99. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --dry-run --sign README.md
  100. env:
  101. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  102. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  103. - name: debuild
  104. run: |
  105. debuild -S -sa -d
  106. debuild -b -sa -d
  107. env:
  108. DEBSIGN_PROGRAM: gpg --batch --pinentry-mode loopback
  109. DEBSIGN_KEYID: 615D449FE6E6A235
  110. working-directory: cryptomator_${{ steps.versions.outputs.ppaVerStr }}
  111. - name: Create detached GPG signatures
  112. run: |
  113. gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator_*_amd64.deb
  114. - name: Upload artifacts
  115. uses: actions/upload-artifact@v3
  116. with:
  117. name: linux-deb-package
  118. path: |
  119. cryptomator_*.dsc
  120. cryptomator_*.orig.tar.xz
  121. cryptomator_*.debian.tar.xz
  122. cryptomator_*_source.buildinfo
  123. cryptomator_*_source.changes
  124. cryptomator_*_amd64.deb
  125. cryptomator_*.asc
  126. - name: Publish on PPA
  127. if: startsWith(github.ref, 'refs/tags/') || inputs.dput
  128. run: dput ppa:sebastian-stenzel/cryptomator-beta cryptomator_*_source.changes
  129. - name: Publish Debian package on GitHub Releases
  130. if: startsWith(github.ref, 'refs/tags/')
  131. uses: softprops/action-gh-release@v1
  132. with:
  133. fail_on_unmatched_files: true
  134. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  135. files: |
  136. cryptomator_*_amd64.deb
  137. cryptomator_*.asc