From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFJuf-0003ov-UX for qemu-devel@nongnu.org; Tue, 21 Jun 2016 07:32:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bFJua-00058X-Hq for qemu-devel@nongnu.org; Tue, 21 Jun 2016 07:32:13 -0400 Received: from mail-lf0-x22c.google.com ([2a00:1450:4010:c07::22c]:34585) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFJua-00058P-AG for qemu-devel@nongnu.org; Tue, 21 Jun 2016 07:32:08 -0400 Received: by mail-lf0-x22c.google.com with SMTP id h129so19216242lfh.1 for ; Tue, 21 Jun 2016 04:32:08 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Tue, 21 Jun 2016 12:32:07 +0100 Message-Id: <1466508727-31297-4-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1466508727-31297-1-git-send-email-alex.bennee@linaro.org> References: <1466508727-31297-1-git-send-email-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 3/3] .travis.yml: disable Sparse testing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: qemu-devel@nongnu.org, Paolo Bonzini , =?UTF-8?q?Alex=20Benn=C3=A9e?= From: Paolo Bonzini On travis-ci.org, all builds fail with /usr/include/features.h:324:11: error: unable to open bits/predefs.h With "make docker-travis@ubuntu", they fail with /usr/include/features.h:374:13: error: unable to open sys/cdefs.h With "make docker-travis@fedora", finally, they fail due to sparse not being able to parse some #pragmas in glib headers. Just kill the thing from the CI builds. Signed-off-by: Paolo Bonzini [AJB: tweak title for my OCD] Signed-off-by: Alex Bennée --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cde7d1a..c13881e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,9 +64,6 @@ script: - make -j3 && ${TEST_CMD} matrix: include: - # Sparse is GCC only - - env: CONFIG="--enable-sparse" - compiler: gcc # gprof/gcov are GCC features - env: CONFIG="--enable-gprof --enable-gcov --disable-pie" compiler: gcc -- 2.7.4