From 568ff1f9da159bd87af64968647b89849b6d6a0b Mon Sep 17 00:00:00 2001 From: John Maguire Date: Sat, 30 Oct 2021 13:49:05 +0100 Subject: [PATCH] Build for Ubuntu Impish 21.10 --- .github/workflows/all.yml | 68 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index bc90e9778..fe75693a8 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -100,6 +100,7 @@ jobs: - build_focal_64 - build_groovy_64 - build_hirsute_64 + - build_impish_64 - build_mac - build_mingw - build_source @@ -943,6 +944,73 @@ jobs: name: release_hirsute_64 path: bin/clementine_*.deb + build_impish_64: + name: Build Ubuntu Impish 64-bit deb + runs-on: ubuntu-18.04 + container: + image: ubuntu:impish + steps: + - name: Install dependencies + env: + DEBIAN_FRONTEND: noninteractive + run: > + apt-get update && apt-get install -y + cmake + dpkg-dev + debhelper + fakeroot + g++ + gettext + git + libasound2-dev + libboost-dev + libboost-serialization-dev + libcdio-cdda2 + libcdio-dev + libchromaprint-dev + libcrypto++-dev + libdbus-1-dev + libfftw3-dev + libglew1.5-dev + libgpod-dev + libgstreamer-plugins-base1.0-dev + libgstreamer1.0-dev + liblastfm5-dev + libmtp-dev + libmygpo-qt-dev + libplist-dev + libprotobuf-dev + libpulse-dev + libqca-qt5-2-dev + libqca-qt5-2-plugins + libqt5x11extras5-dev + libsparsehash-dev + libsqlite3-dev + libtag1-dev + libusbmuxd-dev + protobuf-compiler + qtbase5-dev + qttools5-dev-tools + qttools5-dev + ssh + - uses: actions/checkout@v1.2.0 + - name: cmake + working-directory: bin + run: > + cmake .. + -DWITH_DEBIAN=ON + -DDEB_ARCH=amd64 + -DDEB_DIST=impish + -DFORCE_GIT_VERSION= + -DENABLE_SPOTIFY_BLOB=OFF + - name: make + working-directory: bin + run : make -j2 deb + - uses: actions/upload-artifact@v2 + with: + name: release_impish_64 + path: bin/clementine_*.deb + build_mac: name: Build Mac DMG runs-on: macos-10.15