From patchwork Mon Sep 23 16:07:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Alex_Benn=C3=A9e?= X-Patchwork-Id: 277264 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DDBAE2C0129 for ; Tue, 24 Sep 2013 02:08:25 +1000 (EST) Received: from localhost ([::1]:41508 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO8gR-0002Bs-UD for incoming@patchwork.ozlabs.org; Mon, 23 Sep 2013 12:08:23 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38099) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO8fr-00029g-St for qemu-devel@nongnu.org; Mon, 23 Sep 2013 12:07:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VO8fn-0001nf-2U for qemu-devel@nongnu.org; Mon, 23 Sep 2013 12:07:47 -0400 Received: from static.88-198-71-155.clients.your-server.de ([88.198.71.155]:39110 helo=socrates.bennee.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO8fm-0001nI-SG for qemu-devel@nongnu.org; Mon, 23 Sep 2013 12:07:42 -0400 Received: from localhost ([127.0.0.1] helo=sloy.cambridgebroadband.com) by socrates.bennee.com with esmtp (Exim 4.80) (envelope-from ) id 1VO8hJ-0000Ml-Fd; Mon, 23 Sep 2013 18:09:17 +0200 From: alex.bennee@linaro.org To: qemu-devel@nongnu.org Date: Mon, 23 Sep 2013 17:07:28 +0100 Message-Id: <1379952450-29640-2-git-send-email-alex.bennee@linaro.org> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1379952450-29640-1-git-send-email-alex.bennee@linaro.org> References: <1379952450-29640-1-git-send-email-alex.bennee@linaro.org> MIME-Version: 1.0 X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: alex.bennee@linaro.org X-SA-Exim-Scanned: No (on socrates.bennee.com); SAEximRunCond expanded to false X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 88.198.71.155 Cc: kwolf@redhat.com, stefanha@redhat.com Subject: [Qemu-devel] [PATCH 1/3] .travis.yml: basic compile and check recipes X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Alex Bennée While QEMU already has various continuous integration set-ups in buildbot and commercial Jenkins setups there is some value in supporting travis-ci as well. It is well integrated into GitHub work flow and will trigger on all branch pushes and pull requests. This makes it easier for an individual to kick off smoke tests on a work-in-progress branch before eventual submission of patches/pull requests upstream. The build matrix is currently split by target architecture because a full build of QEMU can take some time. This way you get quick feedback for any obvious errors. --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..69f60c1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: c +env: + - TARGETS=alpha-softmmu,alpha-linux-user + - TARGETS=arm-softmmu,arm-linux-user + - TARGETS=cris-softmmu + - TARGETS=i386-softmmu,x86_64-softmmu + - TARGETS=lm32-softmmu + - TARGETS=m68k-softmmu + - TARGETS=microblaze-softmmu,microblazeel-softmmu + - TARGETS=mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu + - TARGETS=moxie-softmmu + - TARGETS=or32-softmmu, + - TARGETS=ppc-softmmu,ppc64-softmmu,ppcemb-softmmu + - TARGETS=s390x-softmmu + - TARGETS=sh4-softmmu,sh4eb-softmmu + - TARGETS=sparc-softmmu,sparc64-softmmu + - TARGETS=unicore32-softmmu + - TARGETS=xtensa-softmmu,xtensaeb-softmmu +script: "./configure --target-list=${TARGETS} && make && make check"