From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39610) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKVAa-00019T-B4 for qemu-devel@nongnu.org; Fri, 13 Sep 2013 11:20:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VKVAV-0008JO-Lz for qemu-devel@nongnu.org; Fri, 13 Sep 2013 11:20:28 -0400 Received: from static.88-198-71-155.clients.your-server.de ([88.198.71.155]:48773 helo=socrates.bennee.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKVAV-0008JC-FK for qemu-devel@nongnu.org; Fri, 13 Sep 2013 11:20:23 -0400 Received: from localhost ([127.0.0.1] helo=sloy.cambridgebroadband.com) by socrates.bennee.com with esmtp (Exim 4.80) (envelope-from ) id 1VKVBv-0000OM-Dy for qemu-devel@nongnu.org; Fri, 13 Sep 2013 17:21:51 +0200 From: alex.bennee@linaro.org Date: Fri, 13 Sep 2013 16:20:22 +0100 Message-Id: <1379085622-2314-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] .travis.yml: basic compile and check recipes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@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" -- 1.8.4