Skip to content

Commit

Permalink
Add build for Ubuntu Noble
Browse files Browse the repository at this point in the history
  • Loading branch information
hatstand committed Oct 14, 2024
1 parent 53c015f commit 89809d2
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ jobs:
- build_fedora_38
- build_focal_64
- build_jammy_64
- build_noble_64
# - build_mac
- build_mingw
- build_source
Expand Down Expand Up @@ -854,6 +855,74 @@ jobs:
name: release_jammy_64
path: bin/clementine_*.deb

build_noble_64:
name: Build Ubuntu Jammy 64-bit deb
runs-on: ubuntu-24.04
container:
image: ubuntu:noble
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
libglew-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/[email protected]
- name: git hackery
run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: cmake
working-directory: bin
run: >
cmake ..
-DWITH_DEBIAN=ON
-DDEB_ARCH=amd64
-DDEB_DIST=noble
-DENABLE_SPOTIFY_BLOB=OFF
- name: make
working-directory: bin
run : make -j2 deb
- uses: actions/upload-artifact@v4
with:
name: release_noble_64
path: bin/clementine_*.deb

build_mac:
if: false
name: Build Mac DMG
Expand Down

0 comments on commit 89809d2

Please sign in to comment.