debian.yml 6.8 KB

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