From 23e1f044f41c0362058fe6290ecca6775534c0d6 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 6 Apr 2020 14:53:19 +0100 Subject: [PATCH] CI: Install qhelpgenerator for native production build on buster This will be used in dbus!150. Signed-off-by: Simon McVittie --- tools/ci-install.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tools/ci-install.sh b/tools/ci-install.sh index a28f5baca..01b8d669b 100755 --- a/tools/ci-install.sh +++ b/tools/ci-install.sh @@ -54,6 +54,10 @@ NULL= # Typical values for ci_distro=fedora might be 25, rawhide : "${ci_suite:=xenial}" +# ci_variant: +# One of debug, reduced, legacy, production +: "${ci_variant:=production}" + if [ $(id -u) = 0 ]; then sudo= else @@ -119,6 +123,12 @@ case "$ci_distro" in ;; esac + if [ "$ci_host/$ci_variant/$ci_suite" = "native/production/buster" ]; then + $sudo apt-get -qq -y --no-install-recommends install \ + qttools5-dev-tools \ + ${NULL} + fi + $sudo apt-get -qq -y --no-install-recommends install \ adduser \ autoconf-archive \ -- 2.47.3