# THIS FILE WAS AUTO-GENERATED # # $ lcitool manifest ci/manifest.yml # # https://gitlab.com/libvirt/libvirt-ci function install_buildenv() { export DEBIAN_FRONTEND=noninteractive apt-get update apt-get dist-upgrade -y apt-get install --no-install-recommends -y \ ca-certificates \ ccache \ gcc \ git \ libvirt-dev \ locales \ pkgconf \ python3 \ python3-dev \ python3-lxml \ python3-pip \ python3-pytest \ python3-setuptools sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen dpkg-reconfigure locales dpkg-query --showformat '${Package}_${Version}_${Architecture}\n' --show > /packages.txt mkdir -p /usr/libexec/ccache-wrappers ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc } export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers" export LANG="en_US.UTF-8" export PYTHON="/usr/bin/python3"