]> git.ipfire.org Git - thirdparty/qemu.git/blame - .shippable.yml
shippable: be verbose while building docker images
[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
AB
7 matrix:
8 - IMAGE=debian-armhf-cross
9 TARGET_LIST=arm-softmmu,arm-linux-user
10 - IMAGE=debian-arm64-cross
11 TARGET_LIST=aarch64-softmmu,aarch64-linux-user
1ed92515
AB
12 - IMAGE=debian-s390x-cross
13 TARGET_LIST=s390x-softmmu,s390x-linux-user
d92d886a
AB
14build:
15 pre_ci:
d2a44865 16 - make docker-image-${IMAGE} V=1
d92d886a
AB
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
a825ca06
PMD
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
d92d886a 32 - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
a08fc2f8 33 - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))