mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 01:45:17 +00:00
ci: containers: Add CentOS Stream 9 target
Signed-off-by: Erik Skultety <eskultet@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
7485f47082
commit
d955cbd3a1
87
ci/containers/centos-stream-9.Dockerfile
Normal file
87
ci/containers/centos-stream-9.Dockerfile
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
# THIS FILE WAS AUTO-GENERATED
|
||||||
|
#
|
||||||
|
# $ lcitool manifest ci/manifest.yml
|
||||||
|
#
|
||||||
|
# https://gitlab.com/libvirt/libvirt-ci
|
||||||
|
|
||||||
|
FROM quay.io/centos/centos:stream9
|
||||||
|
|
||||||
|
RUN dnf update -y && \
|
||||||
|
dnf install 'dnf-command(config-manager)' -y && \
|
||||||
|
dnf config-manager --set-enabled -y crb && \
|
||||||
|
dnf install -y \
|
||||||
|
audit-libs-devel \
|
||||||
|
augeas \
|
||||||
|
bash-completion \
|
||||||
|
ca-certificates \
|
||||||
|
clang \
|
||||||
|
cpp \
|
||||||
|
cyrus-sasl-devel \
|
||||||
|
device-mapper-devel \
|
||||||
|
diffutils \
|
||||||
|
dnsmasq \
|
||||||
|
dwarves \
|
||||||
|
ebtables \
|
||||||
|
firewalld-filesystem \
|
||||||
|
fuse-devel \
|
||||||
|
gcc \
|
||||||
|
gettext \
|
||||||
|
git \
|
||||||
|
glib2-devel \
|
||||||
|
glibc-devel \
|
||||||
|
glibc-langpack-en \
|
||||||
|
gnutls-devel \
|
||||||
|
grep \
|
||||||
|
iproute \
|
||||||
|
iproute-tc \
|
||||||
|
iptables \
|
||||||
|
iscsi-initiator-utils \
|
||||||
|
kmod \
|
||||||
|
libacl-devel \
|
||||||
|
libattr-devel \
|
||||||
|
libblkid-devel \
|
||||||
|
libcap-ng-devel \
|
||||||
|
libcurl-devel \
|
||||||
|
libnl3-devel \
|
||||||
|
libpcap-devel \
|
||||||
|
libpciaccess-devel \
|
||||||
|
librbd-devel \
|
||||||
|
libselinux-devel \
|
||||||
|
libssh-devel \
|
||||||
|
libtirpc-devel \
|
||||||
|
libwsman-devel \
|
||||||
|
libxml2 \
|
||||||
|
libxml2-devel \
|
||||||
|
libxslt \
|
||||||
|
lvm2 \
|
||||||
|
make \
|
||||||
|
meson \
|
||||||
|
nfs-utils \
|
||||||
|
ninja-build \
|
||||||
|
numactl-devel \
|
||||||
|
numad \
|
||||||
|
parted-devel \
|
||||||
|
perl-base \
|
||||||
|
pkgconfig \
|
||||||
|
polkit \
|
||||||
|
python3 \
|
||||||
|
python3-docutils \
|
||||||
|
qemu-img \
|
||||||
|
readline-devel \
|
||||||
|
rpcgen \
|
||||||
|
rpm-build \
|
||||||
|
sanlock-devel \
|
||||||
|
scrub \
|
||||||
|
sed \
|
||||||
|
systemd-devel \
|
||||||
|
systemtap-sdt-devel \
|
||||||
|
wireshark-devel \
|
||||||
|
yajl-devel && \
|
||||||
|
dnf autoremove -y && \
|
||||||
|
dnf clean all -y && \
|
||||||
|
rpm -qa | sort > /packages.txt
|
||||||
|
|
||||||
|
ENV LANG "en_US.UTF-8"
|
||||||
|
ENV MAKE "/usr/bin/make"
|
||||||
|
ENV NINJA "/usr/bin/ninja"
|
||||||
|
ENV PYTHON "/usr/bin/python3"
|
@ -94,6 +94,13 @@ x86_64-centos-stream-8-container:
|
|||||||
NAME: centos-stream-8
|
NAME: centos-stream-8
|
||||||
|
|
||||||
|
|
||||||
|
x86_64-centos-stream-9-container:
|
||||||
|
extends: .container_job
|
||||||
|
allow_failure: false
|
||||||
|
variables:
|
||||||
|
NAME: centos-stream-9
|
||||||
|
|
||||||
|
|
||||||
x86_64-debian-10-container:
|
x86_64-debian-10-container:
|
||||||
extends: .container_job
|
extends: .container_job
|
||||||
allow_failure: false
|
allow_failure: false
|
||||||
@ -401,6 +408,13 @@ x86_64-centos-stream-8:
|
|||||||
variables:
|
variables:
|
||||||
NAME: centos-stream-8
|
NAME: centos-stream-8
|
||||||
|
|
||||||
|
x86_64-centos-stream-9:
|
||||||
|
extends: .native_build_job
|
||||||
|
needs:
|
||||||
|
- x86_64-centos-stream-9-container
|
||||||
|
allow_failure: false
|
||||||
|
variables:
|
||||||
|
NAME: centos-stream-9
|
||||||
|
|
||||||
x86_64-debian-10:
|
x86_64-debian-10:
|
||||||
extends: .native_build_job
|
extends: .native_build_job
|
||||||
|
@ -22,6 +22,9 @@ targets:
|
|||||||
jobs:
|
jobs:
|
||||||
- arch: x86_64
|
- arch: x86_64
|
||||||
|
|
||||||
|
centos-stream-9:
|
||||||
|
jobs:
|
||||||
|
- arch: x86_64
|
||||||
debian-10:
|
debian-10:
|
||||||
jobs:
|
jobs:
|
||||||
- arch: x86_64
|
- arch: x86_64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user