diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-02-20 11:29:48 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-02-22 09:32:32 +0000 |
commit | e92a43bb1868cda5b267c982dcd61a4cbe549ac2 (patch) | |
tree | a2519d102f0aa6fd61bcdb5bb2b7f19533a3752d | |
parent | a48a1d18274f0e69cdbb29d1e51a0da52311ae5c (diff) |
tests/docker: peg netmap code to a specific version
Tracking head is always going to be at the whims of the upstream.
Let's use a defined release so things don't magically change under us.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | tests/docker/dockerfiles/debian-amd64.docker | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/docker/dockerfiles/debian-amd64.docker b/tests/docker/dockerfiles/debian-amd64.docker index 954fcf9606..d770a11a52 100644 --- a/tests/docker/dockerfiles/debian-amd64.docker +++ b/tests/docker/dockerfiles/debian-amd64.docker @@ -33,6 +33,7 @@ RUN DEBIAN_FRONTEND=noninteractive eatmydata \ apt-get install -y --no-install-recommends \ linux-headers-amd64 RUN git clone https://github.com/luigirizzo/netmap.git /usr/src/netmap +RUN cd /usr/src/netmap && git checkout v11.3 RUN cd /usr/src/netmap/LINUX && ./configure --no-drivers --no-apps --kernel-dir=$(ls -d /usr/src/linux-headers-*-amd64) && make install ENV QEMU_CONFIGURE_OPTS --enable-netmap |