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