diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2017-02-20 10:51:38 +0000 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2017-02-24 14:18:11 +0800 |
commit | d92d886a3b6daadb79d1635ad281685e80d3ac98 (patch) | |
tree | 23e4cb5750732581e05a2666e395c90fd29f0fdf /.shippable.yml | |
parent | 24e0131f372b3b3798460c6694d238ddbd32db11 (diff) |
.shippable.yml: new CI provider
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 <alex.bennee@linaro.org>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-Id: <20170220105139.21581-4-alex.bennee@linaro.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to '.shippable.yml')
-rw-r--r-- | .shippable.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.shippable.yml b/.shippable.yml new file mode 100644 index 0000000000..1a1fd7a91d --- /dev/null +++ b/.shippable.yml @@ -0,0 +1,19 @@ +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 +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 |