CI: Add Debian 11 (#4525)

* add debian 11

* rename debian10

* fix space

* Update Dockerfile
This commit is contained in:
tooomm 2022-01-16 22:46:04 +01:00 committed by GitHub
parent 3253ad64fd
commit 368ff1793f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 5 deletions

24
.ci/Debian11/Dockerfile Normal file
View file

@ -0,0 +1,24 @@
FROM debian:11
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
ccache \
clang-format \
cmake \
file \
g++ \
git \
liblzma-dev \
libmariadb-dev-compat \
libprotobuf-dev \
libqt5multimedia5-plugins \
libqt5sql5-mysql \
libqt5svg5-dev \
libqt5websockets5-dev \
protobuf-compiler \
qtmultimedia5-dev \
qttools5-dev \
qttools5-dev-tools \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*