From 54ebc3739e7a456fb806a85e9ac7b2043508fa95 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 30 Dec 2022 16:12:32 +0000 Subject: [PATCH] ci: Add missing dependencies `libdbus-1-dev` is needed for the interfaces dir from `dbus-1.pc`, and `desktop-file-utils` is needed for `update-desktop-database`. These are needed due to updating Debian Unstable. Signed-off-by: Philip Withnall --- .gitlab-ci/debian-unstable.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci/debian-unstable.Dockerfile b/.gitlab-ci/debian-unstable.Dockerfile index cf3a9b3..435fd68 100644 --- a/.gitlab-ci/debian-unstable.Dockerfile +++ b/.gitlab-ci/debian-unstable.Dockerfile @@ -1,6 +1,7 @@ FROM debian:unstable RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \ + desktop-file-utils \ gettext \ git \ gtk-doc-tools \ @@ -8,6 +9,7 @@ RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \ libadwaita-1-dev \ libaccountsservice-dev \ libappstream-dev \ + libdbus-1-dev \ libflatpak-dev \ libgirepository1.0-dev \ libglib2.0-dev \