mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
a08fc2f8cc
As of this commit: $ echo "container proc:" `getconf _NPROCESSORS_ONLN` `getconf _NPROCESSORS_CONF` container proc: 2 2 Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
24 lines
589 B
YAML
24 lines
589 B
YAML
language: c
|
|
env:
|
|
global:
|
|
- LC_ALL=C
|
|
matrix:
|
|
- IMAGE=debian-armhf-cross
|
|
TARGET_LIST=arm-softmmu,arm-linux-user
|
|
- IMAGE=debian-arm64-cross
|
|
TARGET_LIST=aarch64-softmmu,aarch64-linux-user
|
|
- IMAGE=debian-s390x-cross
|
|
TARGET_LIST=s390x-softmmu,s390x-linux-user
|
|
build:
|
|
pre_ci:
|
|
- make docker-image-${IMAGE}
|
|
pre_ci_boot:
|
|
image_name: qemu
|
|
image_tag: ${IMAGE}
|
|
pull: false
|
|
options: "-e HOME=/root"
|
|
ci:
|
|
- unset CC
|
|
- ./configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
|
|
- make -j$(($(getconf _NPROCESSORS_ONLN) + 1))
|