]>
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: |
8cb14dbb AB |
8 | - IMAGE=debian-amd64 |
9 | TARGET_LIST=x86_64-softmmu,x86_64-linux-user | |
dca688c8 PMD |
10 | - IMAGE=debian-armel-cross |
11 | TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user | |
d92d886a | 12 | - IMAGE=debian-armhf-cross |
492734b5 | 13 | TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user |
d92d886a AB |
14 | - IMAGE=debian-arm64-cross |
15 | TARGET_LIST=aarch64-softmmu,aarch64-linux-user | |
1ed92515 AB |
16 | - IMAGE=debian-s390x-cross |
17 | TARGET_LIST=s390x-softmmu,s390x-linux-user | |
8cb14dbb AB |
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 | |
41a0b1ee PMD |
22 | - IMAGE=debian-ppc64el-cross |
23 | TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user | |
d92d886a | 24 | build: |
d92d886a | 25 | pre_ci_boot: |
3b6b4997 | 26 | image_name: registry.gitlab.com/qemu-project/qemu/qemu/${IMAGE} |
767b6bd2 | 27 | image_tag: latest |
6e3ede39 | 28 | pull: true |
d92d886a AB |
29 | options: "-e HOME=/root" |
30 | ci: | |
31 | - unset CC | |
bc4486fb PB |
32 | - mkdir build |
33 | - cd build | |
f2dfb09c | 34 | - ../configure --disable-docs ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST} |
a08fc2f8 | 35 | - make -j$(($(getconf _NPROCESSORS_ONLN) + 1)) |