From 912589439eed8d6f3fc74aa304f17cfb9f8c0dfc Mon Sep 17 00:00:00 2001 From: John Maguire Date: Sat, 16 May 2020 18:35:48 +0100 Subject: [PATCH] Add bionic builder --- .github/workflows/all.yml | 58 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index fa877e1de..c610794c3 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -377,6 +377,64 @@ jobs: name: release_stretch_64 path: bin/clementine_*.deb + build_bionic_64: + name: Build Ubuntu Bionic 64-bit deb + runs-on: ubuntu-18.04 + container: + image: ubuntu:bionic + steps: + - name: Install dependencies + env: + DEBIAN_FRONTEND: noninteractive + run: > + apt-get update && apt-get install -y + build-essential + cmake + gettext + git + libasound2-dev + libboost-dev + libcdio-dev + libchromaprint-dev + libdbus-1-dev + libfftw3-dev + libglew1.5-dev + libglib2.0-dev + libgpod-dev + libgstreamer-plugins-base1.0-dev + libgstreamer1.0-dev + liblastfm5-dev + libmtp-dev + libprotobuf-dev + libpulse-dev + libqt5x11extras5-dev + libsqlite3-dev + libtag1-dev + pkg-config + protobuf-compiler + qtbase5-dev + qttools5-dev-tools + qttools5-dev + libsparsehash-dev + ssh + - uses: actions/checkout@v1.2.0 + - name: cmake + working-directory: bin + run: > + cmake .. + -DWITH_DEBIAN=ON + -DDEB_ARCH=amd64 + -DDEB_DIST=bionic + -DFORCE_GIT_VERSION= + -DENABLE_SPOTIFY_BLOB=OFF + - name: make + working-directory: bin + run : make -j2 deb + - uses: actions/upload-artifact@v2 + with: + name: release_bionic_64 + path: bin/clementine_*.deb + build_buster_64: name: Build Debian Buster 64-bit deb runs-on: ubuntu-18.04