From 7fc7b1a4fb546d689ec3a5b2411a1cfa290c5a2e Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 28 Aug 2020 17:44:53 -0700 Subject: [PATCH 1/2] Explicitly select qt5 in d/rules See , it's needed for bionic compat. --- debian/rules | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/rules b/debian/rules index 098338c..f023663 100755 --- a/debian/rules +++ b/debian/rules @@ -1,4 +1,5 @@ #!/usr/bin/make -f +export QT_SELECT=qt5 export DEB_BUILD_MAINT_OPTIONS = hardening=+all %: From ea5538527dc8803d0823bf4102766253aa4a9ec5 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 28 Aug 2020 17:47:07 -0700 Subject: [PATCH 2/2] PPA: Build package for Ubuntu Bionic Fixes #503. --- .github/workflows/package.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index d39dfae..be02b41 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - distro: [ubuntu-groovy, ubuntu-focal] + distro: [ubuntu-groovy, ubuntu-focal, ubuntu-bionic] steps: - uses: actions/checkout@v2 @@ -46,6 +46,14 @@ jobs: args: --no-sign ppa: ${{ steps.ppa.outputs.ppa }} + - uses: legoktm/gh-action-build-deb@ubuntu-bionic + if: matrix.distro == 'ubuntu-bionic' + name: Build package for ubuntu-bionic + id: build-ubuntu-bionic + with: + args: --no-sign + ppa: ${{ steps.ppa.outputs.ppa }} + - uses: actions/upload-artifact@v2 with: name: Packages for ${{ matrix.distro }}