ci: disable CentOS 7 test in Cirrus CI

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
Radostin Stoyanov 2023-06-20 07:51:26 +01:00 committed by Andrei Vagin
parent 94c9e47872
commit 362d8fa5c2
2 changed files with 0 additions and 77 deletions

View file

@ -1,45 +0,0 @@
FROM centos:7
ARG CC=gcc
RUN yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
RUN yum install -y \
findutils \
gcc \
git \
gnutls-devel \
iproute \
iptables \
libaio-devel \
libasan \
libcap-devel \
libnet-devel \
libnl3-devel \
make \
procps-ng \
protobuf-c-devel \
protobuf-devel \
protobuf-python \
python \
python-flake8 \
python-ipaddress \
python2-future \
python2-junit_xml \
python-yaml \
python-six \
sudo \
tar \
which \
e2fsprogs \
python2-pip \
rubygem-asciidoctor
COPY . /criu
WORKDIR /criu
RUN make mrproper && date && make -j $(nproc) CC="$CC" && date
# The rpc test cases are running as user #1000, let's add the user
RUN adduser -u 1000 test
RUN make -C test/zdtm -j $(nproc)