From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwVfO-000536-Ui for qemu-devel@nongnu.org; Wed, 20 Feb 2019 12:28:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gwVfN-000221-TK for qemu-devel@nongnu.org; Wed, 20 Feb 2019 12:28:18 -0500 Received: from mail-wr1-x441.google.com ([2a00:1450:4864:20::441]:33354) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gwVfN-00021X-MJ for qemu-devel@nongnu.org; Wed, 20 Feb 2019 12:28:17 -0500 Received: by mail-wr1-x441.google.com with SMTP id i12so27064385wrw.0 for ; Wed, 20 Feb 2019 09:28:17 -0800 (PST) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Wed, 20 Feb 2019 17:28:09 +0000 Message-Id: <20190220172811.10588-7-alex.bennee@linaro.org> In-Reply-To: <20190220172811.10588-1-alex.bennee@linaro.org> References: <20190220172811.10588-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v1 6/8] tests/docker: peg netmap code to a specific version List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, peter.maydell@linaro.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= 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 --- tests/docker/dockerfiles/debian-amd64.docker | 1 + 1 file changed, 1 insertion(+) 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 -- 2.20.1