Add Ubuntu 24.04 "Noble Numbat" Build (#5023)
* Create Ubuntu Noble Numbat dockerfile * Add Noble Numbat to desktop_build * Add Noble Numbat to release_template
This commit is contained in:
parent
2f6c018b7a
commit
4279753030
3 changed files with 31 additions and 0 deletions
27
.ci/UbuntuNoble/Dockerfile
Normal file
27
.ci/UbuntuNoble/Dockerfile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
FROM ubuntu:noble
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||||
|
build-essential \
|
||||||
|
ccache \
|
||||||
|
clang-format \
|
||||||
|
cmake \
|
||||||
|
file \
|
||||||
|
g++ \
|
||||||
|
git \
|
||||||
|
libgl-dev \
|
||||||
|
liblzma-dev \
|
||||||
|
libmariadb-dev-compat \
|
||||||
|
libprotobuf-dev \
|
||||||
|
libqt6multimedia6 \
|
||||||
|
libqt6sql6-mysql \
|
||||||
|
qt6-svg-dev \
|
||||||
|
qt6-websockets-dev \
|
||||||
|
protobuf-compiler \
|
||||||
|
qt6-image-formats-plugins \
|
||||||
|
qt6-l10n-tools \
|
||||||
|
qt6-multimedia-dev \
|
||||||
|
qt6-tools-dev \
|
||||||
|
qt6-tools-dev-tools \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
|
@ -15,6 +15,7 @@ include different targets -->
|
||||||
- <kbd>Ubuntu 18.04 LTS</kbd> ("Bionic Beaver")
|
- <kbd>Ubuntu 18.04 LTS</kbd> ("Bionic Beaver")
|
||||||
- <kbd>Ubuntu 20.04 LTS</kbd> ("Focal Fossa")
|
- <kbd>Ubuntu 20.04 LTS</kbd> ("Focal Fossa")
|
||||||
- <kbd>Ubuntu 22.04 LTS</kbd> ("Jammy Jellyfish")
|
- <kbd>Ubuntu 22.04 LTS</kbd> ("Jammy Jellyfish")
|
||||||
|
- <kbd>Ubuntu 24.04 LTS</kbd> ("Noble Numbat")
|
||||||
- <kbd>Debian 11</kbd> ("Bullseye")
|
- <kbd>Debian 11</kbd> ("Bullseye")
|
||||||
- <kbd>Debian 12</kbd> ("Bookworm")
|
- <kbd>Debian 12</kbd> ("Bookworm")
|
||||||
- <kbd>Fedora 38</kbd>
|
- <kbd>Fedora 38</kbd>
|
||||||
|
|
3
.github/workflows/desktop-build.yml
vendored
3
.github/workflows/desktop-build.yml
vendored
|
@ -114,6 +114,9 @@ jobs:
|
||||||
package: DEB
|
package: DEB
|
||||||
test: skip # running tests on all distros is superfluous
|
test: skip # running tests on all distros is superfluous
|
||||||
|
|
||||||
|
- distro: UbuntuNoble
|
||||||
|
package: DEB
|
||||||
|
|
||||||
name: ${{matrix.distro}}
|
name: ${{matrix.distro}}
|
||||||
needs: configure
|
needs: configure
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue