Added Ubuntu 19.10 "Eoan" support

This commit is contained in:
casey langen 2019-10-26 22:12:21 -07:00
parent 771c41efc6
commit b0aab217ac
3 changed files with 18 additions and 3 deletions

View File

@ -52,6 +52,19 @@ jobs:
- run: mkdir -p /root/debs && mv /root/project/*.deb /root/debs/
- store_artifacts:
path: /root/debs/
build_ubuntu_eoan:
docker:
- image: ubuntu:eoan
steps:
- checkout
- run: apt-get update
- run: apt-get install -y build-essential clang cmake libboost-thread1.67-dev libboost-system1.67-dev libboost-filesystem1.67-dev libboost-date-time1.67-dev libboost-atomic1.67-dev libboost-chrono1.67-dev libogg-dev libvorbis-dev libavutil-dev libavformat-dev libswresample-dev libncursesw5-dev libasound2-dev libpulse-dev pulseaudio libmicrohttpd-dev libmp3lame-dev libcurl4-openssl-dev libev-dev libssl-dev libtag1-dev
- run: cmake -DGENERATE_DEB=1 -DDEB_ARCHITECTURE=amd64 -DDEB_DISTRO=eoan -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
- run: make -j2
- run: make package
- run: mkdir -p /root/debs && mv /root/project/*.deb /root/debs/
- store_artifacts:
path: /root/debs/
build_ubuntu_zesty:
docker:
- image: ubuntu:zesty
@ -141,6 +154,7 @@ workflows:
- build_ubuntu_bionic: *workflow_filters
- build_ubuntu_cosmic: *workflow_filters
- build_ubuntu_disco: *workflow_filters
- build_ubuntu_eoan: *workflow_filters
- build_ubuntu_zesty: *workflow_filters
- build_fedora_26: *workflow_filters
- build_fedora_27: *workflow_filters

View File

@ -7,10 +7,11 @@ musikcube:
* it_IT update (alexpovel)
* chocolately install instructions (majkinetor)
* FreeBSD install instructions (0mp)
* Raspberry Pi 4 support
* Debian Buster support
* Dependency upgrades on Windows (libcurl, PDCurses, libogg, LAME, ffmpeg)
* A couple small tweaks / fixes to widget focus behavior
* Raspberry Pi 4 support
* Debian Buster support
* Ubuntu Eoan support
musikdroid:
* Code cleanup and refactors with clearer names for major subsystems

View File

@ -283,7 +283,7 @@ if (GENERATE_DEB MATCHES "1")
set(DEB_BOOST_VERSION "1.65.1")
set(DEB_MICROHTTPD_VERSION "12")
set(DEB_LIBCURL_VERSION "4")
elseif (DEB_DISTRO MATCHES "cosmic" OR DEB_DISTRO MATCHES "disco" OR DEB_DISTRO MATCHES "buster")
elseif (DEB_DISTRO MATCHES "cosmic" OR DEB_DISTRO MATCHES "disco" OR DEB_DISTRO MATCHES "eoan" OR DEB_DISTRO MATCHES "buster")
set(DEB_BOOST_VERSION "1.67.0")
set(DEB_MICROHTTPD_VERSION "12")
set(DEB_LIBCURL_VERSION "4")