mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 11:35:19 +00:00
ci: Add openSUSE Tumbleweed
Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
a3fef27fb5
commit
103d019a4f
@ -178,6 +178,11 @@ x64-opensuse-leap-152-container:
|
|||||||
variables:
|
variables:
|
||||||
NAME: opensuse-leap-152
|
NAME: opensuse-leap-152
|
||||||
|
|
||||||
|
x64-opensuse-tumbleweed-container:
|
||||||
|
extends: .container_job
|
||||||
|
variables:
|
||||||
|
NAME: opensuse-tumbleweed
|
||||||
|
|
||||||
x64-ubuntu-1804-container:
|
x64-ubuntu-1804-container:
|
||||||
extends: .container_job
|
extends: .container_job
|
||||||
variables:
|
variables:
|
||||||
@ -386,6 +391,14 @@ x64-opensuse-leap-152:
|
|||||||
NAME: opensuse-leap-152
|
NAME: opensuse-leap-152
|
||||||
RPM: skip
|
RPM: skip
|
||||||
|
|
||||||
|
x64-opensuse-tumbleweed:
|
||||||
|
extends: .native_build_job
|
||||||
|
needs:
|
||||||
|
- x64-opensuse-tumbleweed-container
|
||||||
|
variables:
|
||||||
|
NAME: opensuse-tumbleweed
|
||||||
|
RPM: skip
|
||||||
|
|
||||||
x64-ubuntu-1804:
|
x64-ubuntu-1804:
|
||||||
extends: .native_build_job
|
extends: .native_build_job
|
||||||
needs:
|
needs:
|
||||||
|
101
ci/containers/opensuse-tumbleweed.Dockerfile
Normal file
101
ci/containers/opensuse-tumbleweed.Dockerfile
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# THIS FILE WAS AUTO-GENERATED
|
||||||
|
#
|
||||||
|
# $ lcitool dockerfile opensuse-tumbleweed libvirt
|
||||||
|
#
|
||||||
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
|
FROM registry.opensuse.org/opensuse/tumbleweed:latest
|
||||||
|
|
||||||
|
RUN zypper update -y && \
|
||||||
|
zypper install -y \
|
||||||
|
audit-devel \
|
||||||
|
augeas \
|
||||||
|
augeas-lenses \
|
||||||
|
avahi-devel \
|
||||||
|
bash-completion \
|
||||||
|
ca-certificates \
|
||||||
|
ccache \
|
||||||
|
clang \
|
||||||
|
cpp \
|
||||||
|
cppi \
|
||||||
|
cyrus-sasl-devel \
|
||||||
|
dbus-1-devel \
|
||||||
|
device-mapper-devel \
|
||||||
|
diffutils \
|
||||||
|
dnsmasq \
|
||||||
|
dwarves \
|
||||||
|
ebtables \
|
||||||
|
fuse-devel \
|
||||||
|
gcc \
|
||||||
|
gettext-runtime \
|
||||||
|
git \
|
||||||
|
glib2-devel \
|
||||||
|
glibc-devel \
|
||||||
|
glibc-locale \
|
||||||
|
glusterfs-devel \
|
||||||
|
grep \
|
||||||
|
iproute2 \
|
||||||
|
iptables \
|
||||||
|
kmod \
|
||||||
|
libacl-devel \
|
||||||
|
libapparmor-devel \
|
||||||
|
libattr-devel \
|
||||||
|
libblkid-devel \
|
||||||
|
libcap-ng-devel \
|
||||||
|
libcurl-devel \
|
||||||
|
libgnutls-devel \
|
||||||
|
libiscsi-devel \
|
||||||
|
libnl3-devel \
|
||||||
|
libnuma-devel \
|
||||||
|
libpcap-devel \
|
||||||
|
libpciaccess-devel \
|
||||||
|
librbd-devel \
|
||||||
|
libselinux-devel \
|
||||||
|
libssh-devel \
|
||||||
|
libssh2-devel \
|
||||||
|
libtirpc-devel \
|
||||||
|
libudev-devel \
|
||||||
|
libwsman-devel \
|
||||||
|
libxml2 \
|
||||||
|
libxml2-devel \
|
||||||
|
libxslt \
|
||||||
|
libyajl-devel \
|
||||||
|
lvm2 \
|
||||||
|
make \
|
||||||
|
meson \
|
||||||
|
nfs-utils \
|
||||||
|
ninja \
|
||||||
|
numad \
|
||||||
|
open-iscsi \
|
||||||
|
parted \
|
||||||
|
parted-devel \
|
||||||
|
perl-base \
|
||||||
|
pkgconfig \
|
||||||
|
polkit \
|
||||||
|
python3-base \
|
||||||
|
python3-docutils \
|
||||||
|
python3-flake8 \
|
||||||
|
qemu-tools \
|
||||||
|
radvd \
|
||||||
|
readline-devel \
|
||||||
|
rpcgen \
|
||||||
|
rpm-build \
|
||||||
|
sanlock-devel \
|
||||||
|
scrub \
|
||||||
|
sed \
|
||||||
|
systemtap-sdt-devel \
|
||||||
|
wireshark-devel \
|
||||||
|
xen-devel \
|
||||||
|
xfsprogs-devel && \
|
||||||
|
zypper clean --all && \
|
||||||
|
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/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"
|
Loading…
Reference in New Issue
Block a user