s390x: add css_migration_enabled to machine class
[qemu/ar7.git] / .shippable.yml
blob5e0caa65c5e88585b78dfa7659638d8fd6b4bad8
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     # mips64el-softmmu disabled due to libfdt problem
15     - IMAGE=debian-mipsel-cross
16       TARGET_LIST=mipsel-softmmu,mipsel-linux-user,mips64el-linux-user
17 build:
18   pre_ci:
19     - make docker-image-${IMAGE} V=1
20   pre_ci_boot:
21     image_name: qemu
22     image_tag: ${IMAGE}
23     pull: false
24     options: "-e HOME=/root"
25   ci:
26     - unset CC
27     # some targets require newer up to date packages, for example TARGET_LIST matching
28     # aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu)
29     # see the configure script:
30     #    error_exit "DTC (libfdt) version >= 1.4.2 not present. Your options:"
31     #    "  (1) Preferred: Install the DTC (libfdt) devel package"
32     #    "  (2) Fetch the DTC submodule, using:"
33     #    "      git submodule update --init dtc"
34     - dpkg --compare-versions `dpkg-query --showformat='${Version}' --show libfdt-dev` ge 1.4.2 || git submodule update --init dtc
35     - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
36     - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))