From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48427) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ceLH4-0007pO-Ux for qemu-devel@nongnu.org; Thu, 16 Feb 2017 07:35:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ceLH2-0001EX-Fh for qemu-devel@nongnu.org; Thu, 16 Feb 2017 07:35:02 -0500 Received: from mail-wr0-x22b.google.com ([2a00:1450:400c:c0c::22b]:34593) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ceLH2-0001Dy-9a for qemu-devel@nongnu.org; Thu, 16 Feb 2017 07:35:00 -0500 Received: by mail-wr0-x22b.google.com with SMTP id z61so10649076wrc.1 for ; Thu, 16 Feb 2017 04:35:00 -0800 (PST) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Thu, 16 Feb 2017 12:34:55 +0000 Message-Id: <20170216123456.28621-4-alex.bennee@linaro.org> In-Reply-To: <20170216123456.28621-1-alex.bennee@linaro.org> References: <20170216123456.28621-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v4 3/4] .shippable.yml: new CI provider List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: famz@redhat.com Cc: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= Ostensibly Shippable offers a similar set of services as Travis. However they are focused on Docker container based work-flows so we can use our existing containers to run a few extra builds - in this case a bunch of cross-compiled targets on a Debian multiarch system. Signed-off-by: Alex Bennée --- v3 - reduce matrix to armhf/arm64 which currently work - use the make docker-image-* build stanzas - add TARGET_LIST to each build --- .shippable.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .shippable.yml diff --git a/.shippable.yml b/.shippable.yml new file mode 100644 index 0000000000..4de8daf341 --- /dev/null +++ b/.shippable.yml @@ -0,0 +1,21 @@ +language: c +env: + matrix: + - IMAGE=debian-armhf-cross + TARGET_LIST=arm-softmmu,arm-linux-user + - IMAGE=debian-arm64-cross + TARGET_LIST=aarch64-softmmu,aarch64-linux-user + - IMAGE=centos6 + TARGET_LIST=i386-softmmu,x86_64-softmmu +build: + pre_ci: + - make docker-image-${IMAGE} + pre_ci_boot: + image_name: qemu + image_tag: ${IMAGE} + pull: false + options: "-e HOME=/root" + ci: + - unset CC + - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} + - make -j2 -- 2.11.0