From: Simon McVittie Date: Mon, 6 Apr 2020 13:53:19 +0000 (+0100) Subject: CI: Install qhelpgenerator for native production build on buster X-Git-Tag: dbus-1.13.14~3^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=23e1f044;p=thirdparty%2Fdbus.git CI: Install qhelpgenerator for native production build on buster This will be used in dbus!150. Signed-off-by: Simon McVittie --- 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 \