mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 11:35:19 +00:00
ci: Add Ubuntu 22.04
Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
1e25a480f5
commit
29ee8c1d2e
101
ci/containers/ubuntu-2204.Dockerfile
Normal file
101
ci/containers/ubuntu-2204.Dockerfile
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# THIS FILE WAS AUTO-GENERATED
|
||||||
|
#
|
||||||
|
# $ lcitool manifest ci/manifest.yml
|
||||||
|
#
|
||||||
|
# https://gitlab.com/libvirt/libvirt-ci
|
||||||
|
|
||||||
|
FROM docker.io/library/ubuntu:22.04
|
||||||
|
|
||||||
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y eatmydata && \
|
||||||
|
eatmydata apt-get dist-upgrade -y && \
|
||||||
|
eatmydata apt-get install --no-install-recommends -y \
|
||||||
|
augeas-lenses \
|
||||||
|
augeas-tools \
|
||||||
|
bash-completion \
|
||||||
|
ca-certificates \
|
||||||
|
ccache \
|
||||||
|
clang \
|
||||||
|
codespell \
|
||||||
|
cpp \
|
||||||
|
diffutils \
|
||||||
|
dwarves \
|
||||||
|
ebtables \
|
||||||
|
flake8 \
|
||||||
|
gcc \
|
||||||
|
gettext \
|
||||||
|
git \
|
||||||
|
grep \
|
||||||
|
iproute2 \
|
||||||
|
iptables \
|
||||||
|
kmod \
|
||||||
|
libacl1-dev \
|
||||||
|
libapparmor-dev \
|
||||||
|
libattr1-dev \
|
||||||
|
libaudit-dev \
|
||||||
|
libblkid-dev \
|
||||||
|
libc-dev-bin \
|
||||||
|
libc6-dev \
|
||||||
|
libcap-ng-dev \
|
||||||
|
libcurl4-gnutls-dev \
|
||||||
|
libdevmapper-dev \
|
||||||
|
libfuse-dev \
|
||||||
|
libglib2.0-dev \
|
||||||
|
libglusterfs-dev \
|
||||||
|
libgnutls28-dev \
|
||||||
|
libiscsi-dev \
|
||||||
|
libnl-3-dev \
|
||||||
|
libnl-route-3-dev \
|
||||||
|
libnuma-dev \
|
||||||
|
libopenwsman-dev \
|
||||||
|
libparted-dev \
|
||||||
|
libpcap0.8-dev \
|
||||||
|
libpciaccess-dev \
|
||||||
|
librbd-dev \
|
||||||
|
libreadline-dev \
|
||||||
|
libsanlock-dev \
|
||||||
|
libsasl2-dev \
|
||||||
|
libselinux1-dev \
|
||||||
|
libssh-dev \
|
||||||
|
libssh2-1-dev \
|
||||||
|
libtirpc-dev \
|
||||||
|
libudev-dev \
|
||||||
|
libxen-dev \
|
||||||
|
libxml2-dev \
|
||||||
|
libxml2-utils \
|
||||||
|
libyajl-dev \
|
||||||
|
locales \
|
||||||
|
lvm2 \
|
||||||
|
make \
|
||||||
|
meson \
|
||||||
|
nfs-common \
|
||||||
|
ninja-build \
|
||||||
|
numad \
|
||||||
|
open-iscsi \
|
||||||
|
perl-base \
|
||||||
|
pkgconf \
|
||||||
|
policykit-1 \
|
||||||
|
python3 \
|
||||||
|
python3-docutils \
|
||||||
|
qemu-utils \
|
||||||
|
scrub \
|
||||||
|
sed \
|
||||||
|
systemtap-sdt-dev \
|
||||||
|
wireshark-dev \
|
||||||
|
xsltproc && \
|
||||||
|
eatmydata apt-get autoremove -y && \
|
||||||
|
eatmydata apt-get autoclean -y && \
|
||||||
|
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/clang && \
|
||||||
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
|
||||||
|
|
||||||
|
ENV LANG "en_US.UTF-8"
|
||||||
|
ENV MAKE "/usr/bin/make"
|
||||||
|
ENV NINJA "/usr/bin/ninja"
|
||||||
|
ENV PYTHON "/usr/bin/python3"
|
||||||
|
ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
|
@ -184,6 +184,13 @@ x86_64-ubuntu-2004-container:
|
|||||||
NAME: ubuntu-2004
|
NAME: ubuntu-2004
|
||||||
|
|
||||||
|
|
||||||
|
x86_64-ubuntu-2204-container:
|
||||||
|
extends: .container_job
|
||||||
|
allow_failure: false
|
||||||
|
variables:
|
||||||
|
NAME: ubuntu-2204
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Cross container jobs
|
# Cross container jobs
|
||||||
|
|
||||||
@ -592,6 +599,15 @@ x86_64-ubuntu-2004-clang:
|
|||||||
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
|
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
|
||||||
|
|
||||||
|
|
||||||
|
x86_64-ubuntu-2204:
|
||||||
|
extends: .native_build_job
|
||||||
|
needs:
|
||||||
|
- x86_64-ubuntu-2204-container
|
||||||
|
allow_failure: false
|
||||||
|
variables:
|
||||||
|
NAME: ubuntu-2204
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Cross build jobs
|
# Cross build jobs
|
||||||
|
|
||||||
|
@ -223,3 +223,5 @@ targets:
|
|||||||
CC: clang
|
CC: clang
|
||||||
MESON_ARGS: -Db_lundef=false -Db_sanitize=address,undefined
|
MESON_ARGS: -Db_lundef=false -Db_sanitize=address,undefined
|
||||||
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
|
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
|
||||||
|
|
||||||
|
ubuntu-2204: x86_64
|
||||||
|
Loading…
Reference in New Issue
Block a user