mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-04 05:17:44 +03:00
f666425950
* Switch to using libvirt+minimal instead of libvirt project, for shorter build times * Actually do a git build job in CentOS Stream & AlmaLinux * Drop AlmaLinux 8 * Update to latest Alpine versions Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
# THIS FILE WAS AUTO-GENERATED
|
|
#
|
|
# $ lcitool manifest ci/manifest.yml
|
|
#
|
|
# https://gitlab.com/libvirt/libvirt-ci
|
|
|
|
function install_buildenv() {
|
|
dnf update -y
|
|
dnf install -y \
|
|
bash-completion \
|
|
ca-certificates \
|
|
ccache \
|
|
cppi \
|
|
gcc \
|
|
gettext \
|
|
git \
|
|
glib2-devel \
|
|
glibc-devel \
|
|
glibc-langpack-en \
|
|
gtk-vnc2-devel \
|
|
gtk3-devel \
|
|
icoutils \
|
|
libgovirt-devel \
|
|
libtool \
|
|
libvirt-devel \
|
|
libvirt-gobject-devel \
|
|
libxml2 \
|
|
libxml2-devel \
|
|
make \
|
|
meson \
|
|
ninja-build \
|
|
pkgconfig \
|
|
rest-devel \
|
|
rpm-build \
|
|
spice-gtk3-devel \
|
|
vte291-devel
|
|
rpm -qa | sort > /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
|
|
}
|
|
function export_buildenv() {
|
|
|
|
export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers"
|
|
export LANG="en_US.UTF-8"
|
|
export MAKE="/usr/bin/make"
|
|
export NINJA="/usr/bin/ninja"
|
|
}
|