]>
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 | 7 | matrix: |
9d3aa1a3 PMD |
8 | - IMAGE=debian-amd64 |
9 | TARGET_LIST=x86_64-softmmu,x86_64-linux-user | |
89bec11a PMD |
10 | - IMAGE=debian-win32-cross |
11 | TARGET_LIST=arm-softmmu,i386-softmmu,lm32-softmmu | |
12 | - IMAGE=debian-win64-cross | |
13 | TARGET_LIST=aarch64-softmmu,sparc64-softmmu,x86_64-softmmu | |
dca688c8 PMD |
14 | - IMAGE=debian-armel-cross |
15 | TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user | |
d92d886a | 16 | - IMAGE=debian-armhf-cross |
492734b5 | 17 | TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user |
d92d886a AB |
18 | - IMAGE=debian-arm64-cross |
19 | TARGET_LIST=aarch64-softmmu,aarch64-linux-user | |
1ed92515 AB |
20 | - IMAGE=debian-s390x-cross |
21 | TARGET_LIST=s390x-softmmu,s390x-linux-user | |
12149704 PMD |
22 | - IMAGE=debian-mips-cross |
23 | TARGET_LIST=mips-softmmu,mipsel-linux-user | |
67f5b285 PMD |
24 | - IMAGE=debian-mips64el-cross |
25 | TARGET_LIST=mips64el-softmmu,mips64el-linux-user | |
9fa82d26 PMD |
26 | - IMAGE=debian-powerpc-cross |
27 | TARGET_LIST=ppc-softmmu,ppcemb-softmmu,ppc-linux-user | |
41a0b1ee PMD |
28 | - IMAGE=debian-ppc64el-cross |
29 | TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user | |
d92d886a AB |
30 | build: |
31 | pre_ci: | |
d2a44865 | 32 | - make docker-image-${IMAGE} V=1 |
d92d886a AB |
33 | pre_ci_boot: |
34 | image_name: qemu | |
35 | image_tag: ${IMAGE} | |
36 | pull: false | |
37 | options: "-e HOME=/root" | |
38 | ci: | |
39 | - unset CC | |
a825ca06 PMD |
40 | # some targets require newer up to date packages, for example TARGET_LIST matching |
41 | # aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu) | |
42 | # see the configure script: | |
43 | # error_exit "DTC (libfdt) version >= 1.4.2 not present. Your options:" | |
44 | # " (1) Preferred: Install the DTC (libfdt) devel package" | |
45 | # " (2) Fetch the DTC submodule, using:" | |
46 | # " git submodule update --init dtc" | |
47 | - dpkg --compare-versions `dpkg-query --showformat='${Version}' --show libfdt-dev` ge 1.4.2 || git submodule update --init dtc | |
d92d886a | 48 | - ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} |
a08fc2f8 | 49 | - make -j$(($(getconf _NPROCESSORS_ONLN) + 1)) |