mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 13:47:13 +03:00
ci: Refresh contents
Notable changes: * the CentOS Stream 8 container is now using a proper base image instead of starting from a CentOS 8 image and then adding the CentOS Stream 8 repositories on top; * distributions that have a perl-base package are now using that one instead of the regular perl package, which contains a bunch of features we don't need, resulting in smaller containers. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
043adb8b50
commit
a3fef27fb5
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool variables freebsd-12 libvirt
|
# $ lcitool variables freebsd-12 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
PACKAGING_COMMAND='pkg'
|
PACKAGING_COMMAND='pkg'
|
||||||
CCACHE='/usr/local/bin/ccache'
|
CCACHE='/usr/local/bin/ccache'
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool variables freebsd-current libvirt
|
# $ lcitool variables freebsd-current libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
PACKAGING_COMMAND='pkg'
|
PACKAGING_COMMAND='pkg'
|
||||||
CCACHE='/usr/local/bin/ccache'
|
CCACHE='/usr/local/bin/ccache'
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool variables macos-11 libvirt
|
# $ lcitool variables macos-11 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
PACKAGING_COMMAND='brew'
|
PACKAGING_COMMAND='brew'
|
||||||
CCACHE='/usr/local/bin/ccache'
|
CCACHE='/usr/local/bin/ccache'
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile centos-8 libvirt
|
# $ lcitool dockerfile centos-8 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/centos:8
|
FROM docker.io/library/centos:8
|
||||||
|
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
# THIS FILE WAS AUTO-GENERATED
|
# THIS FILE WAS AUTO-GENERATED
|
||||||
#
|
#
|
||||||
# $ lcitool dockerfile centos-stream libvirt
|
# $ lcitool dockerfile centos-stream-8 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/centos:8
|
FROM quay.io/centos/centos:stream8
|
||||||
|
|
||||||
RUN dnf install -y centos-release-stream && \
|
RUN dnf update -y && \
|
||||||
dnf install -y centos-stream-release && \
|
|
||||||
dnf update -y && \
|
|
||||||
dnf install 'dnf-command(config-manager)' -y && \
|
dnf install 'dnf-command(config-manager)' -y && \
|
||||||
dnf config-manager --set-enabled -y powertools && \
|
dnf config-manager --set-enabled -y powertools && \
|
||||||
dnf install -y centos-release-advanced-virtualization && \
|
dnf install -y centos-release-advanced-virtualization && \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross aarch64 debian-10 libvirt
|
# $ lcitool dockerfile --cross aarch64 debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross armv6l debian-10 libvirt
|
# $ lcitool dockerfile --cross armv6l debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross armv7l debian-10 libvirt
|
# $ lcitool dockerfile --cross armv7l debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross i686 debian-10 libvirt
|
# $ lcitool dockerfile --cross i686 debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mips debian-10 libvirt
|
# $ lcitool dockerfile --cross mips debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mips64el debian-10 libvirt
|
# $ lcitool dockerfile --cross mips64el debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mipsel debian-10 libvirt
|
# $ lcitool dockerfile --cross mipsel debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross ppc64le debian-10 libvirt
|
# $ lcitool dockerfile --cross ppc64le debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross s390x debian-10 libvirt
|
# $ lcitool dockerfile --cross s390x debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile debian-10 libvirt
|
# $ lcitool dockerfile debian-10 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:10-slim
|
FROM docker.io/library/debian:10-slim
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross aarch64 debian-sid libvirt
|
# $ lcitool dockerfile --cross aarch64 debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross armv6l debian-sid libvirt
|
# $ lcitool dockerfile --cross armv6l debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross armv7l debian-sid libvirt
|
# $ lcitool dockerfile --cross armv7l debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross i686 debian-sid libvirt
|
# $ lcitool dockerfile --cross i686 debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mips64el debian-sid libvirt
|
# $ lcitool dockerfile --cross mips64el debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mipsel debian-sid libvirt
|
# $ lcitool dockerfile --cross mipsel debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross ppc64le debian-sid libvirt
|
# $ lcitool dockerfile --cross ppc64le debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross s390x debian-sid libvirt
|
# $ lcitool dockerfile --cross s390x debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile debian-sid libvirt
|
# $ lcitool dockerfile debian-sid libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/debian:sid-slim
|
FROM docker.io/library/debian:sid-slim
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile fedora-33 libvirt
|
# $ lcitool dockerfile fedora-33 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM registry.fedoraproject.org/fedora:33
|
FROM registry.fedoraproject.org/fedora:33
|
||||||
|
|
||||||
@ -79,7 +79,7 @@ exec "$@"' > /usr/bin/nosync && \
|
|||||||
numad \
|
numad \
|
||||||
parted \
|
parted \
|
||||||
parted-devel \
|
parted-devel \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconfig \
|
pkgconfig \
|
||||||
polkit \
|
polkit \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mingw32 fedora-rawhide libvirt
|
# $ lcitool dockerfile --cross mingw32 fedora-rawhide libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM registry.fedoraproject.org/fedora:rawhide
|
FROM registry.fedoraproject.org/fedora:rawhide
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ exec "$@"' > /usr/bin/nosync && \
|
|||||||
ninja-build \
|
ninja-build \
|
||||||
numad \
|
numad \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
polkit \
|
polkit \
|
||||||
python3 \
|
python3 \
|
||||||
python3-docutils \
|
python3-docutils \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile --cross mingw64 fedora-rawhide libvirt
|
# $ lcitool dockerfile --cross mingw64 fedora-rawhide libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM registry.fedoraproject.org/fedora:rawhide
|
FROM registry.fedoraproject.org/fedora:rawhide
|
||||||
|
|
||||||
@ -47,7 +47,7 @@ exec "$@"' > /usr/bin/nosync && \
|
|||||||
ninja-build \
|
ninja-build \
|
||||||
numad \
|
numad \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
polkit \
|
polkit \
|
||||||
python3 \
|
python3 \
|
||||||
python3-docutils \
|
python3-docutils \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile fedora-rawhide libvirt
|
# $ lcitool dockerfile fedora-rawhide libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM registry.fedoraproject.org/fedora:rawhide
|
FROM registry.fedoraproject.org/fedora:rawhide
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ exec "$@"' > /usr/bin/nosync && \
|
|||||||
numad \
|
numad \
|
||||||
parted \
|
parted \
|
||||||
parted-devel \
|
parted-devel \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconfig \
|
pkgconfig \
|
||||||
polkit \
|
polkit \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# THIS FILE WAS AUTO-GENERATED
|
# THIS FILE WAS AUTO-GENERATED
|
||||||
#
|
#
|
||||||
# $ lcitool dockerfile opensuse-152 libvirt
|
# $ lcitool dockerfile opensuse-leap-152 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM registry.opensuse.org/opensuse/leap:15.2
|
FROM registry.opensuse.org/opensuse/leap:15.2
|
||||||
|
|
||||||
@ -68,7 +68,7 @@ RUN zypper update -y && \
|
|||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
parted-devel \
|
parted-devel \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconfig \
|
pkgconfig \
|
||||||
polkit \
|
polkit \
|
||||||
python3-base \
|
python3-base \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile ubuntu-1804 libvirt
|
# $ lcitool dockerfile ubuntu-1804 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/ubuntu:18.04
|
FROM docker.io/library/ubuntu:18.04
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# $ lcitool dockerfile ubuntu-2004 libvirt
|
# $ lcitool dockerfile ubuntu-2004 libvirt
|
||||||
#
|
#
|
||||||
# https://gitlab.com/libvirt/libvirt-ci/-/commit/6552fd8885423cfc383a58255eca542937f7d4ea
|
# https://gitlab.com/libvirt/libvirt-ci/-/commit/1d4e10a04c6a0d29302003244a9dc4dc3c9d06f0
|
||||||
|
|
||||||
FROM docker.io/library/ubuntu:20.04
|
FROM docker.io/library/ubuntu:20.04
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
|
|||||||
numad \
|
numad \
|
||||||
open-iscsi \
|
open-iscsi \
|
||||||
parted \
|
parted \
|
||||||
perl \
|
perl-base \
|
||||||
pkgconf \
|
pkgconf \
|
||||||
policykit-1 \
|
policykit-1 \
|
||||||
python3 \
|
python3 \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user