add ubuntu 20.10 Groovy Gorilla (#4178)
This commit is contained in:
parent
9f9581c2be
commit
46cf50d468
2 changed files with 29 additions and 0 deletions
25
.ci/UbuntuGroovy/Dockerfile
Normal file
25
.ci/UbuntuGroovy/Dockerfile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
FROM ubuntu:groovy
|
||||||
|
|
||||||
|
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 \
|
||||||
|
qt5-default \
|
||||||
|
qtmultimedia5-dev \
|
||||||
|
qttools5-dev \
|
||||||
|
qttools5-dev-tools \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
4
.github/workflows/linux-builds.yml
vendored
4
.github/workflows/linux-builds.yml
vendored
|
@ -17,12 +17,16 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
distro: # these names correspond to the files in .ci/$distro
|
distro: # these names correspond to the files in .ci/$distro
|
||||||
|
- UbuntuGroovy
|
||||||
- UbuntuFocal
|
- UbuntuFocal
|
||||||
- UbuntuBionic
|
- UbuntuBionic
|
||||||
- ArchLinux
|
- ArchLinux
|
||||||
- DebianBuster
|
- DebianBuster
|
||||||
- Fedora33
|
- Fedora33
|
||||||
include:
|
include:
|
||||||
|
- distro: UbuntuGroovy
|
||||||
|
package: DEB
|
||||||
|
|
||||||
- distro: UbuntuFocal
|
- distro: UbuntuFocal
|
||||||
package: DEB
|
package: DEB
|
||||||
test: skip # UbuntuFocal has a broken qt for debug builds
|
test: skip # UbuntuFocal has a broken qt for debug builds
|
||||||
|
|
Loading…
Reference in a new issue