linux-flatpak: drop ...

... in flavor of FlatHub official build
This commit is contained in:
liushuyu 2021-12-23 00:06:34 -07:00
parent ccadba44f5
commit 3262fbd485
No known key found for this signature in database
GPG Key ID: 23D1CE4534419437
2 changed files with 1 additions and 17 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
image: ["linux-clang-format", "linux-flatpak", "linux-fresh", "linux-mingw", "linux-transifex"]
image: ["linux-clang-format", "linux-fresh", "linux-mingw", "linux-transifex"]
steps:
- uses: actions/checkout@v2

View File

@ -1,16 +0,0 @@
FROM ubuntu:20.04
LABEL maintainer="yuzu"
RUN useradd -m -u 1027 -s /bin/bash yuzu && DEBIAN_FRONTEND=noninteractive apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get -y full-upgrade \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
flatpak flatpak-builder \
librsvg2-common \
ca-certificates build-essential libsdl2-dev libssl-dev \
python qtbase5-dev qtwebengine5-dev libqt5opengl5-dev \
wget git ccache cmake \
ninja-build dnsutils gnupg2 \
sshfs fuse elfutils \
&& apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/apt /var/lib/dpkg /var/lib/cache /var/lib/log \
&& flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo \
&& flatpak install -v -y flathub org.kde.Platform//5.15 org.kde.Sdk//5.15
USER 1027