Commit 553dd546 authored by Adrian Reber's avatar Adrian Reber Committed by Pavel Emelyanov

travis: fix python2 package installation

For python2/python3 compatibility install additional (python2-future)
and different (python2-ipaddress) packages during test.

Also switch Fedora tests to explicitly install versioned python packages
(python2-* instead of python-*).
Signed-off-by: 's avatarAdrian Reber <areber@redhat.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 767534f1
......@@ -26,11 +26,12 @@ RUN mv .ccache /tmp && make mrproper && ccache -sz && \
RUN apk add \
py-yaml \
py-pip \
py2-future \
ip6tables \
iptables \
iproute2 \
tar \
bash
RUN pip install protobuf ipaddr
RUN pip install protobuf ipaddress
RUN make -C test/zdtm
......@@ -22,9 +22,11 @@ RUN yum install -y \
protobuf-devel \
protobuf-python \
python \
python-ipaddr \
python-ipaddress \
python2-future \
python-yaml \
tar
tar \
which
COPY . /criu
WORKDIR /criu
......
......@@ -17,11 +17,15 @@ RUN dnf install -y \
procps-ng \
protobuf-c-devel \
protobuf-devel \
protobuf-python \
python \
python-ipaddr \
python2-protobuf \
python2 \
# Starting with Fedora 28 this is python2-ipaddress
python-ipaddress \
# Starting with Fedora 28 this is python2-pyyaml
python-yaml \
tar
python2-future \
tar \
which
# Replace coreutils-single with "traditional" coreutils
# to fix the following error on Fedora 28/rawhide while
......
FROM s390x/debian:jessie
FROM s390x/debian:jessie-backports
ENV QEMU_CPU z900
COPY scripts/build/qemu-user-static/usr/bin/qemu-s390x-static /usr/bin/qemu-s390x-static
......@@ -19,7 +19,8 @@ RUN apt-get update && apt-get install -y \
pkg-config \
protobuf-c-compiler \
protobuf-compiler \
python-minimal
python-minimal \
python-future
COPY . /criu
WORKDIR /criu
......
......@@ -2,7 +2,7 @@
set -x -e
TRAVIS_PKGS="protobuf-c-compiler libprotobuf-c0-dev libaio-dev
libprotobuf-dev protobuf-compiler python-ipaddr libcap-dev
libprotobuf-dev protobuf-compiler libcap-dev
libnl-3-dev gcc-multilib gdb bash python-protobuf
libnet-dev util-linux asciidoc xmlto libnl-route-3-dev"
......@@ -45,7 +45,9 @@ travis_prep () {
apt-get update -qq
apt-get install -qq --no-install-recommends $TRAVIS_PKGS
pip install junit-xml
# travis is based on 14.04 and that does not have python
# packages for future and ipaddress (16.04 has those packages)
pip install junit-xml future ipaddress
chmod a+x $HOME
}
......
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