]> git.ipfire.org Git - thirdparty/qemu.git/blame - .shippable.yml
shippable: add armel targets
[thirdparty/qemu.git] / .shippable.yml
CommitLineData
d92d886a 1language: c
a825ca06
PMD
2git:
3 submodules: false
d92d886a 4env:
c34647c1
PMD
5 global:
6 - LC_ALL=C
d92d886a 7 matrix:
dca688c8
PMD
8 - IMAGE=debian-armel-cross
9 TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
d92d886a 10 - IMAGE=debian-armhf-cross
492734b5 11 TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
d92d886a
AB
12 - IMAGE=debian-arm64-cross
13 TARGET_LIST=aarch64-softmmu,aarch64-linux-user
1ed92515
AB
14 - IMAGE=debian-s390x-cross
15 TARGET_LIST=s390x-softmmu,s390x-linux-user
92bd1e46
PMD
16 # mips64el-softmmu disabled due to libfdt problem
17 - IMAGE=debian-mipsel-cross
18 TARGET_LIST=mipsel-softmmu,mipsel-linux-user,mips64el-linux-user
d92d886a
AB
19build:
20 pre_ci:
d2a44865 21 - make docker-image-${IMAGE} V=1
d92d886a
AB
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
a825ca06
PMD
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
d92d886a 37 - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
a08fc2f8 38 - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))