123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- name: Build Debian Package
- on:
- workflow_dispatch:
- inputs:
- ref:
- description: 'GitHub Ref (e.g. refs/tags/1.6.16)'
- required: true
- semver:
- description: 'SemVer String (e.g. 1.7.0-beta1)'
- required: true
- ppaver:
- description: 'Full PPA Version String (e.g. 1.6.16+1.7.0~beta1-0ppa1)'
- required: true
- dput:
- description: 'Upload to PPA'
- required: true
- default: false
- type: boolean
- env:
- JAVA_VERSION: 19
- OPENJFX_JMODS_AMD64: 'https://download2.gluonhq.com/openjfx/19/openjfx-19_linux-x64_bin-jmods.zip'
- OPENJFX_JMODS_AARCH64: 'https://download2.gluonhq.com/openjfx/19/openjfx-19_linux-aarch64_bin-jmods.zip'
- jobs:
- build:
- name: Build Debian Package
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v3
- with:
- ref: ${{ github.events.inputs.ref }}
- - id: versions
- name: Get version information
- run: |
- SEM_VER_STR="${{ github.events.inputs.semver }}"
- SEM_VER_NUM=`echo ${SEM_VER_STR} | sed -E 's/([0-9]+\.[0-9]+\.[0-9]+).*/\1/'`
- REVCOUNT=`git rev-list --count HEAD`
- echo "semVerStr=${SEM_VER_STR}" >> $GITHUB_OUTPUT
- echo "semVerNum=${SEM_VER_NUM}" >> $GITHUB_OUTPUT
- echo "revNum=${REVCOUNT}" >> $GITHUB_OUTPUT
- - name: Install build tools
- run: |
- sudo add-apt-repository ppa:coffeelibs/openjdk
- sudo apt-get update
- sudo apt-get install debhelper devscripts dput coffeelibs-jdk-19 libgtk2.0-0
- - name: Setup Java
- uses: actions/setup-java@v3
- with:
- distribution: 'zulu'
- java-version: ${{ env.JAVA_VERSION }}
- cache: 'maven'
- - name: Run maven
- run: mvn -B clean package -Pdependency-check,linux -DskipTests
- - name: Download OpenJFX jmods
- id: download-jmods
- run: |
- curl -L ${{ env.OPENJFX_JMODS_AMD64 }} -o openjfx-amd64.zip
- mkdir -p jmods/amd64
- unzip -j openjfx-amd64.zip \*/javafx.base.jmod \*/javafx.controls.jmod \*/javafx.fxml.jmod \*/javafx.graphics.jmod -d jmods/amd64
- curl -L ${{ env.OPENJFX_JMODS_AARCH64 }} -o openjfx-aarch64.zip
- mkdir -p jmods/aarch64
- unzip -j openjfx-aarch64.zip \*/javafx.base.jmod \*/javafx.controls.jmod \*/javafx.fxml.jmod \*/javafx.graphics.jmod -d jmods/aarch64
- - name: Ensure major jfx version in pom and in jmods is the same
- shell: pwsh # TODO translate to bash
- run: |
- mkdir jfxBaseJmodAmd64
- jmod extract --dir jfxBaseJmodAmd64 jmods/amd64/javafx.base.jmod
- $jfxJmodVersionAmd64 = ((Get-Content -Path "jfxBaseJmodAmd64/lib/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=','') -split "\."
- mkdir jfxBaseJmodAarch64
- jmod extract --dir jfxBaseJmodAarch64 jmods/aarch64/javafx.base.jmod
- $jfxJmodVersionAarch64 = ((Get-Content -Path "jfxBaseJmodAarch64/lib/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=','') -split "\."
- if ($jfxJmodVersionAmd64[0] -ne $jfxJmodVersionAarch64[0] ) {
- Write-Error "JavaFX Jmods for aarch64 and amd64 are different major versions"
- exit 1
- }
- $jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."
- if ($jfxPomVersion[0] -ne $jfxJmodVersionAmd64[0]) {
- Write-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version of Jmods($($jfxJmodVersionAmd64[0])) "
- exit 1
- }
- - name: Create orig.tar.gz with common/ libs/ mods/ jmods/
- run: |
- mkdir pkgdir
- cp -r target/libs pkgdir
- cp -r target/mods pkgdir
- cp -r jmods pkgdir
- cp -r dist/linux/common/ pkgdir
- cp target/cryptomator-*.jar pkgdir/mods
- tar -cJf cryptomator_${{ github.event.inputs.ppaver }}.orig.tar.xz -C pkgdir .
- - name: Patch and rename pkgdir
- run: |
- cp -r dist/linux/debian/ pkgdir
- export RFC2822_TIMESTAMP=`date --rfc-2822`
- envsubst '${SEMVER_STR} ${VERSION_NUM} ${REVISION_NUM}' < dist/linux/debian/rules > pkgdir/debian/rules
- envsubst '${PPA_VERSION} ${RFC2822_TIMESTAMP}' < dist/linux/debian/changelog > pkgdir/debian/changelog
- find . -name "*.jar" >> pkgdir/debian/source/include-binaries
- mv pkgdir cryptomator_${{ github.event.inputs.ppaver }}
- env:
- SEMVER_STR: ${{ steps.versions.outputs.semVerStr }}
- VERSION_NUM: ${{ steps.versions.outputs.semVerNum }}
- REVISION_NUM: ${{ steps.versions.outputs.revNum }}
- PPA_VERSION: ${{ github.event.inputs.ppaver }}
- - name: Prepare GPG-Agent for signing with key 615D449FE6E6A235
- run: |
- echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
- echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --dry-run --sign README.md
- env:
- GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
- GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
- - name: debuild
- run: |
- debuild -S -sa -d
- debuild -b -sa -d
- env:
- DEBSIGN_PROGRAM: gpg --batch --pinentry-mode loopback
- DEBSIGN_KEYID: 615D449FE6E6A235
- working-directory: cryptomator_${{ github.event.inputs.ppaver }}
- - name: Create detached GPG signatures
- run: |
- gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator_*_amd64.deb
- - name: Upload artifacts
- uses: actions/upload-artifact@v3
- with:
- name: linux-deb-package
- path: |
- cryptomator_*.dsc
- cryptomator_*.orig.tar.xz
- cryptomator_*.debian.tar.xz
- cryptomator_*_source.buildinfo
- cryptomator_*_source.changes
- cryptomator_*_amd64.deb
- cryptomator_*.asc
- - name: Publish on PPA
- if: inputs.dput
- run: dput ppa:sebastian-stenzel/cryptomator-beta cryptomator_*_source.changes
-
- # If ref is a tag, also upload to GitHub Releases:
- - name: Determine tag name
- if: startsWith(github.events.inputs.ref, 'refs/tags/')
- run: |
- REF=${{ github.events.inputs.ref }}
- echo "TAG_NAME=${REF##*/}" >> $GITHUB_ENV
- - name: Publish Debian package on GitHub Releases
- if: startsWith(github.events.inputs.ref, 'refs/tags/')
- uses: softprops/action-gh-release@v1
- with:
- fail_on_unmatched_files: true
- tag_name: ${{ github.env.TAG_NAME }}
- token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
- files: |
- cryptomator_*_amd64.deb
- cryptomator_*.asc
|