virt-viewer/ci/buildenv/fedora-39.sh
Daniel P. Berrangé f666425950 ci: refresh with latest 'lcitool manifest'
* 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>
2024-10-29 17:43:56 +00:00

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"
}