mirror of
https://github.com/clementine-player/Clementine
synced 2025-02-02 12:26:48 +01:00
Add focal build
This commit is contained in:
parent
4da609d459
commit
e1f82b24a1
68
.github/workflows/all.yml
vendored
68
.github/workflows/all.yml
vendored
@ -2,8 +2,72 @@ name: all
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build_focal_64:
|
||||
name: Build Ubuntu Focal 64-bit deb
|
||||
runs-on: ubuntu-18.04
|
||||
container:
|
||||
image: ubuntu:focal
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
env:
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
run: >
|
||||
apt-get update && apt-get install -y
|
||||
cmake
|
||||
fakeroot
|
||||
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@v2
|
||||
- name: cmake
|
||||
working-directory: bin
|
||||
run : >
|
||||
cmake ..
|
||||
-DWITH_DEBIAN=ON
|
||||
-DDEB_ARCH=amd64
|
||||
-DDEB_DIST=focal
|
||||
-DFORCE_GIT_VERSION=
|
||||
-DENABLE_SPOTIFY_BLOB=OFF
|
||||
- name: make
|
||||
working-directory: bin
|
||||
run : make -j2 deb
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: release_focal_64
|
||||
path: bin/clementine_*.deb
|
||||
|
||||
build_mac:
|
||||
name: Build
|
||||
name: Build Mac DMG
|
||||
runs-on: macos-10.15
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
@ -59,6 +123,6 @@ jobs:
|
||||
run: make dmg
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: release/mac
|
||||
name: release_mac
|
||||
path: bin/clementine-*.dmg
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user