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

View file

@ -1,4 +1,4 @@
FROM debian:buster FROM debian:10
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \ build-essential \

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/*

View file

@ -102,16 +102,20 @@ jobs:
package: skip # we are packaged in arch already package: skip # we are packaged in arch already
allow-failure: yes allow-failure: yes
- distro: DebianBuster - distro: Debian10
package: DEB package: DEB
- distro: Fedora35 - distro: Debian11
package: RPM package: DEB
- distro: Fedora34 - distro: Fedora34
package: RPM package: RPM
test: skip # gtest does not compile for some reason test: skip # gtest does not compile for some reason
- distro: Fedora35
package: RPM
name: ${{matrix.distro}} name: ${{matrix.distro}}
needs: configure needs: configure