Commit 077409c1 authored by Adrian Reber's avatar Adrian Reber Committed by Andrei Vagin

travis: fix rawhide test by also installing sudo

Signed-off-by: 's avatarAdrian Reber <areber@redhat.com>
Acked-by: 's avatarRadostin Stoyanov <rstoyanov1@gmail.com>
Acked-by: 's avatarRadostin Stoyanov <rstoyanov1@gmail.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent bdbd7c8f
...@@ -29,6 +29,7 @@ RUN dnf install -y \ ...@@ -29,6 +29,7 @@ RUN dnf install -y \
python3-future \ python3-future \
python3-protobuf \ python3-protobuf \
python3-junit_xml \ python3-junit_xml \
sudo \
tar \ tar \
which \ which \
e2fsprogs \ e2fsprogs \
...@@ -48,5 +49,9 @@ WORKDIR /criu ...@@ -48,5 +49,9 @@ WORKDIR /criu
ENV CCACHE_DIR=/tmp/.ccache CCACHE_NOCOMPRESS=1 $ENV1=yes ENV CCACHE_DIR=/tmp/.ccache CCACHE_NOCOMPRESS=1 $ENV1=yes
RUN mv .ccache /tmp && make mrproper && ccache -sz && \ RUN mv .ccache /tmp && make mrproper && ccache -sz && \
date && make -j $(nproc) CC="$CC" && date && ccache -s date && make -j $(nproc) CC="$CC" && date && ccache -s
# 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) RUN make -C test/zdtm -j $(nproc)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment