]>
Commit | Line | Data |
---|---|---|
d92d886a | 1 | language: c |
a825ca06 PMD |
2 | git: |
3 | submodules: false | |
d92d886a | 4 | env: |
c34647c1 PMD |
5 | global: |
6 | - LC_ALL=C | |
d92d886a AB |
7 | matrix: |
8 | - IMAGE=debian-armhf-cross | |
492734b5 | 9 | TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user |
d92d886a AB |
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 | |
92bd1e46 PMD |
14 | # mips64el-softmmu disabled due to libfdt problem |
15 | - IMAGE=debian-mipsel-cross | |
16 | TARGET_LIST=mipsel-softmmu,mipsel-linux-user,mips64el-linux-user | |
d92d886a AB |
17 | build: |
18 | pre_ci: | |
d2a44865 | 19 | - make docker-image-${IMAGE} V=1 |
d92d886a AB |
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 | |
a825ca06 PMD |
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 | |
d92d886a | 35 | - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} |
a08fc2f8 | 36 | - make -j$(($(getconf _NPROCESSORS_ONLN) + 1)) |