2017-02-20 10:51:38 +00:00
|
|
|
language: c
|
2017-06-02 18:56:24 +00:00
|
|
|
git:
|
|
|
|
submodules: false
|
2017-02-20 10:51:38 +00:00
|
|
|
env:
|
2017-06-02 18:56:22 +00:00
|
|
|
global:
|
|
|
|
- LC_ALL=C
|
2017-02-20 10:51:38 +00:00
|
|
|
matrix:
|
2020-06-12 19:02:36 +00:00
|
|
|
- IMAGE=debian-amd64
|
|
|
|
TARGET_LIST=x86_64-softmmu,x86_64-linux-user
|
|
|
|
- IMAGE=debian-mips-cross
|
2021-01-14 16:57:21 +00:00
|
|
|
TARGET_LIST=mips-softmmu
|
2017-02-20 10:51:38 +00:00
|
|
|
build:
|
|
|
|
pre_ci_boot:
|
2020-07-24 06:44:54 +00:00
|
|
|
image_name: registry.gitlab.com/qemu-project/qemu/qemu/${IMAGE}
|
2020-07-01 13:56:29 +00:00
|
|
|
image_tag: latest
|
2020-07-01 13:56:52 +00:00
|
|
|
pull: true
|
2017-02-20 10:51:38 +00:00
|
|
|
options: "-e HOME=/root"
|
|
|
|
ci:
|
|
|
|
- unset CC
|
2019-12-11 14:33:49 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2020-02-03 09:09:20 +00:00
|
|
|
- ../configure --disable-docs ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
|
2017-06-02 18:56:23 +00:00
|
|
|
- make -j$(($(getconf _NPROCESSORS_ONLN) + 1))
|