ci: refresh with latest lcitool manifest
This refresh switches the CI for contributors to be triggered by merge
requests. Pushing to a branch in a fork will no longer run CI pipelines,
in order to avoid consuming CI minutes. To regain the original behaviour
contributors can opt-in to a pipeline on push
git push <remote> -o ci.variable=RUN_PIPELINE=1
This variable can also be set globally on the repository, through the
web UI options Settings -> CI/CD -> Variables, though this is not
recommended. Upstream repo pushes to branches will run CI.
The use of containers has changed in this update, with only the upstream
repo creating containers, in order to avoid consuming contributors'
limited storage quotas. A fork with existing container images may delete
them. Containers will be rebuilt upstream when pushing commits with CI
changes to the default branch. Any other scenario with CI changes will
simply install build pre-requisite packages in a throaway environment,
using the ci/buildenv/ scripts. These scripts may also be used on a
contributor's local machines.
With pipelines triggered by merge requests, it is also now possible to
workaround the inability of contributors to run pipelines if they have
run out of CI quota. A project member can trigger a pipeline from the
merge request, which will run in context of upstream, however, note
this should only be done after reviewing the code for any malicious
CI changes.
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2022-09-30 08:50:04 +00:00
|
|
|
# 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 \
|
|
|
|
augeas-lenses \
|
|
|
|
augeas-tools \
|
|
|
|
bash-completion \
|
|
|
|
ca-certificates \
|
|
|
|
ccache \
|
|
|
|
codespell \
|
|
|
|
cpp \
|
|
|
|
diffutils \
|
|
|
|
dwarves \
|
|
|
|
ebtables \
|
|
|
|
flake8 \
|
|
|
|
gettext \
|
|
|
|
git \
|
|
|
|
grep \
|
|
|
|
iproute2 \
|
|
|
|
iptables \
|
|
|
|
kmod \
|
|
|
|
libc-dev-bin \
|
|
|
|
libxml2-utils \
|
|
|
|
locales \
|
|
|
|
lvm2 \
|
|
|
|
make \
|
|
|
|
meson \
|
|
|
|
nfs-common \
|
|
|
|
ninja-build \
|
|
|
|
numad \
|
|
|
|
open-iscsi \
|
|
|
|
perl-base \
|
|
|
|
pkgconf \
|
|
|
|
policykit-1 \
|
|
|
|
python3 \
|
|
|
|
python3-docutils \
|
|
|
|
qemu-utils \
|
|
|
|
scrub \
|
|
|
|
sed \
|
|
|
|
xsltproc
|
|
|
|
sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen
|
|
|
|
dpkg-reconfigure locales
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
dpkg --add-architecture i386
|
|
|
|
apt-get update
|
|
|
|
apt-get dist-upgrade -y
|
|
|
|
apt-get install --no-install-recommends -y dpkg-dev
|
|
|
|
apt-get install --no-install-recommends -y \
|
|
|
|
gcc-i686-linux-gnu \
|
|
|
|
libacl1-dev:i386 \
|
|
|
|
libapparmor-dev:i386 \
|
|
|
|
libattr1-dev:i386 \
|
|
|
|
libaudit-dev:i386 \
|
|
|
|
libblkid-dev:i386 \
|
|
|
|
libc6-dev:i386 \
|
|
|
|
libcap-ng-dev:i386 \
|
|
|
|
libcurl4-gnutls-dev:i386 \
|
|
|
|
libdevmapper-dev:i386 \
|
|
|
|
libfuse-dev:i386 \
|
|
|
|
libglib2.0-dev:i386 \
|
|
|
|
libglusterfs-dev:i386 \
|
|
|
|
libgnutls28-dev:i386 \
|
|
|
|
libiscsi-dev:i386 \
|
|
|
|
libnl-3-dev:i386 \
|
|
|
|
libnl-route-3-dev:i386 \
|
|
|
|
libnuma-dev:i386 \
|
|
|
|
libparted-dev:i386 \
|
|
|
|
libpcap0.8-dev:i386 \
|
|
|
|
libpciaccess-dev:i386 \
|
|
|
|
librbd-dev:i386 \
|
|
|
|
libreadline-dev:i386 \
|
|
|
|
libsanlock-dev:i386 \
|
|
|
|
libsasl2-dev:i386 \
|
|
|
|
libselinux1-dev:i386 \
|
|
|
|
libssh-gcrypt-dev:i386 \
|
|
|
|
libssh2-1-dev:i386 \
|
|
|
|
libtirpc-dev:i386 \
|
|
|
|
libudev-dev:i386 \
|
|
|
|
libxml2-dev:i386 \
|
|
|
|
libyajl-dev:i386 \
|
|
|
|
systemtap-sdt-dev:i386
|
|
|
|
mkdir -p /usr/local/share/meson/cross
|
2023-03-30 09:15:18 +00:00
|
|
|
printf "[binaries]\n\
|
ci: refresh with latest lcitool manifest
This refresh switches the CI for contributors to be triggered by merge
requests. Pushing to a branch in a fork will no longer run CI pipelines,
in order to avoid consuming CI minutes. To regain the original behaviour
contributors can opt-in to a pipeline on push
git push <remote> -o ci.variable=RUN_PIPELINE=1
This variable can also be set globally on the repository, through the
web UI options Settings -> CI/CD -> Variables, though this is not
recommended. Upstream repo pushes to branches will run CI.
The use of containers has changed in this update, with only the upstream
repo creating containers, in order to avoid consuming contributors'
limited storage quotas. A fork with existing container images may delete
them. Containers will be rebuilt upstream when pushing commits with CI
changes to the default branch. Any other scenario with CI changes will
simply install build pre-requisite packages in a throaway environment,
using the ci/buildenv/ scripts. These scripts may also be used on a
contributor's local machines.
With pipelines triggered by merge requests, it is also now possible to
workaround the inability of contributors to run pipelines if they have
run out of CI quota. A project member can trigger a pipeline from the
merge request, which will run in context of upstream, however, note
this should only be done after reviewing the code for any malicious
CI changes.
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2022-09-30 08:50:04 +00:00
|
|
|
c = '/usr/bin/i686-linux-gnu-gcc'\n\
|
|
|
|
ar = '/usr/bin/i686-linux-gnu-gcc-ar'\n\
|
|
|
|
strip = '/usr/bin/i686-linux-gnu-strip'\n\
|
|
|
|
pkgconfig = '/usr/bin/i686-linux-gnu-pkg-config'\n\
|
|
|
|
\n\
|
|
|
|
[host_machine]\n\
|
|
|
|
system = 'linux'\n\
|
|
|
|
cpu_family = 'x86'\n\
|
|
|
|
cpu = 'i686'\n\
|
2023-03-30 09:15:18 +00:00
|
|
|
endian = 'little'\n" > /usr/local/share/meson/cross/i686-linux-gnu
|
ci: refresh with latest lcitool manifest
This refresh switches the CI for contributors to be triggered by merge
requests. Pushing to a branch in a fork will no longer run CI pipelines,
in order to avoid consuming CI minutes. To regain the original behaviour
contributors can opt-in to a pipeline on push
git push <remote> -o ci.variable=RUN_PIPELINE=1
This variable can also be set globally on the repository, through the
web UI options Settings -> CI/CD -> Variables, though this is not
recommended. Upstream repo pushes to branches will run CI.
The use of containers has changed in this update, with only the upstream
repo creating containers, in order to avoid consuming contributors'
limited storage quotas. A fork with existing container images may delete
them. Containers will be rebuilt upstream when pushing commits with CI
changes to the default branch. Any other scenario with CI changes will
simply install build pre-requisite packages in a throaway environment,
using the ci/buildenv/ scripts. These scripts may also be used on a
contributor's local machines.
With pipelines triggered by merge requests, it is also now possible to
workaround the inability of contributors to run pipelines if they have
run out of CI quota. A project member can trigger a pipeline from the
merge request, which will run in context of upstream, however, note
this should only be done after reviewing the code for any malicious
CI changes.
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2022-09-30 08:50:04 +00:00
|
|
|
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/i686-linux-gnu-cc
|
|
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/i686-linux-gnu-gcc
|
|
|
|
}
|
|
|
|
|
|
|
|
export CCACHE_WRAPPERSDIR="/usr/libexec/ccache-wrappers"
|
|
|
|
export LANG="en_US.UTF-8"
|
|
|
|
export MAKE="/usr/bin/make"
|
|
|
|
export NINJA="/usr/bin/ninja"
|
|
|
|
export PYTHON="/usr/bin/python3"
|
|
|
|
|
|
|
|
export ABI="i686-linux-gnu"
|
|
|
|
export MESON_OPTS="--cross-file=i686-linux-gnu"
|