From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45410) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ar678-0003Zn-QT for qemu-devel@nongnu.org; Fri, 15 Apr 2016 11:56:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ar677-00005K-Jb for qemu-devel@nongnu.org; Fri, 15 Apr 2016 11:56:58 -0400 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:38718) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ar677-00005B-DH for qemu-devel@nongnu.org; Fri, 15 Apr 2016 11:56:57 -0400 Received: by mail-wm0-x229.google.com with SMTP id u206so38666270wme.1 for ; Fri, 15 Apr 2016 08:56:57 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Fri, 15 Apr 2016 16:57:01 +0100 Message-Id: <1460735821-12775-5-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1460735821-12775-1-git-send-email-alex.bennee@linaro.org> References: <1460735821-12775-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] [PATCH 4/4] .travis.yml: add trusty GCE target List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Alex=20Benn=C3=A9e?= If we want to run our docker based tests we'll need to do them on a normal VM with docker support. Lets just enable the build on trusty for now to check against a newer Ubuntu. Signed-off-by: Alex Bennée -- v2 - use custom before_install to apt-get build-dep qemu - disable addon for trusty build - add -qq to apt line --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml index 262b5ef..ed5a026 100644 --- a/.travis.yml +++ b/.travis.yml @@ -89,3 +89,13 @@ matrix: - env: CONFIG="" os: osx compiler: clang + - env: CONFIG="" + sudo: required + addons: + dist: trusty + compiler: gcc + before_install: + - sudo apt-get update -qq + - sudo apt-get build-dep -qq qemu + - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ + - git submodule update --init --recursive -- 2.7.4