2017-02-20 13:51:38 +03:00
|
|
|
language: c
|
2017-06-02 21:56:24 +03:00
|
|
|
git:
|
|
|
|
submodules: false
|
2017-02-20 13:51:38 +03:00
|
|
|
env:
|
2017-06-02 21:56:22 +03:00
|
|
|
global:
|
|
|
|
- LC_ALL=C
|
2017-02-20 13:51:38 +03:00
|
|
|
matrix:
|
2020-06-12 22:02:36 +03:00
|
|
|
- IMAGE=debian-amd64
|
|
|
|
TARGET_LIST=x86_64-softmmu,x86_64-linux-user
|
2019-07-11 17:27:21 +03:00
|
|
|
- IMAGE=debian-win32-cross
|
2020-09-15 16:43:17 +03:00
|
|
|
TARGET_LIST=arm-softmmu,i386-softmmu
|
2019-07-11 17:27:21 +03:00
|
|
|
- IMAGE=debian-win64-cross
|
|
|
|
TARGET_LIST=aarch64-softmmu,sparc64-softmmu,x86_64-softmmu
|
2017-07-18 03:31:45 +03:00
|
|
|
- IMAGE=debian-armel-cross
|
|
|
|
TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
|
2017-02-20 13:51:38 +03:00
|
|
|
- IMAGE=debian-armhf-cross
|
2017-06-02 21:56:26 +03:00
|
|
|
TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
|
2017-02-20 13:51:38 +03:00
|
|
|
- IMAGE=debian-arm64-cross
|
|
|
|
TARGET_LIST=aarch64-softmmu,aarch64-linux-user
|
2017-02-27 17:30:28 +03:00
|
|
|
- IMAGE=debian-s390x-cross
|
|
|
|
TARGET_LIST=s390x-softmmu,s390x-linux-user
|
2020-06-12 22:02:36 +03:00
|
|
|
- IMAGE=debian-mips-cross
|
|
|
|
TARGET_LIST=mips-softmmu,mipsel-linux-user
|
|
|
|
- IMAGE=debian-mips64el-cross
|
|
|
|
TARGET_LIST=mips64el-softmmu,mips64el-linux-user
|
2017-07-18 03:31:46 +03:00
|
|
|
- IMAGE=debian-ppc64el-cross
|
|
|
|
TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
|
2017-02-20 13:51:38 +03:00
|
|
|
build:
|
|
|
|
pre_ci_boot:
|
2020-07-24 09:44:54 +03:00
|
|
|
image_name: registry.gitlab.com/qemu-project/qemu/qemu/${IMAGE}
|
2020-07-01 16:56:29 +03:00
|
|
|
image_tag: latest
|
2020-07-01 16:56:52 +03:00
|
|
|
pull: true
|
2017-02-20 13:51:38 +03:00
|
|
|
options: "-e HOME=/root"
|
|
|
|
ci:
|
|
|
|
- unset CC
|
2019-12-11 17:33:49 +03:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2020-02-03 12:09:20 +03:00
|
|
|
- ../configure --disable-docs ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
|
2017-06-02 21:56:23 +03:00
|
|
|
- make -j$(($(getconf _NPROCESSORS_ONLN) + 1))
|