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