From 775d503715c41e51fbd1cf1c9f896e39ccbd2e11 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Sun, 15 Sep 2024 10:15:37 +0200 Subject: [PATCH] ci: Include appstreamcli and desktop-file-utils in images We require appstreamcli and desktop-file-validate to validate metainfo and desktop files, without them, these tests will be simply skipped. Part-of: --- .gitlab-ci/debian.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/debian.Dockerfile b/.gitlab-ci/debian.Dockerfile index a6379b1..ab990fb 100644 --- a/.gitlab-ci/debian.Dockerfile +++ b/.gitlab-ci/debian.Dockerfile @@ -8,4 +8,5 @@ RUN export DEBIAN_FRONTEND=noninteractive \ && eatmydata apt-get --no-install-recommends -y build-dep . \ && eatmydata apt-get --no-install-recommends -y install build-essential git wget gcovr \ && eatmydata apt-get --no-install-recommends -y install intltool \ + && eatmydata apt-get --no-install-recommends -y install appstream desktop-file-utils \ && eatmydata apt-get clean