shippable: add armel targets
[qemu/ar7.git] / .shippable.yml
blobabcaf6f4d4f0870a56e86e575866eab0f545861d
1 language: c
2 git:
3    submodules: false
4 env:
5   global:
6     - LC_ALL=C
7   matrix:
8     - IMAGE=debian-armel-cross
9       TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
10     - IMAGE=debian-armhf-cross
11       TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
12     - IMAGE=debian-arm64-cross
13       TARGET_LIST=aarch64-softmmu,aarch64-linux-user
14     - IMAGE=debian-s390x-cross
15       TARGET_LIST=s390x-softmmu,s390x-linux-user
16     # mips64el-softmmu disabled due to libfdt problem
17     - IMAGE=debian-mipsel-cross
18       TARGET_LIST=mipsel-softmmu,mipsel-linux-user,mips64el-linux-user
19 build:
20   pre_ci:
21     - make docker-image-${IMAGE} V=1
22   pre_ci_boot:
23     image_name: qemu
24     image_tag: ${IMAGE}
25     pull: false
26     options: "-e HOME=/root"
27   ci:
28     - unset CC
29     # some targets require newer up to date packages, for example TARGET_LIST matching
30     # aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu)
31     # see the configure script:
32     #    error_exit "DTC (libfdt) version >= 1.4.2 not present. Your options:"
33     #    "  (1) Preferred: Install the DTC (libfdt) devel package"
34     #    "  (2) Fetch the DTC submodule, using:"
35     #    "      git submodule update --init dtc"
36     - dpkg --compare-versions `dpkg-query --showformat='${Version}' --show libfdt-dev` ge 1.4.2 || git submodule update --init dtc
37     - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
38     - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))