254ef17e3f
Some of the cross-compiler builds (the mips build and the win64 build for example) are quite slow and sometimes hit the 1h time limit. Increase the limit a little bit to make sure that we do not get failures in the CI runs just because of some few minutes. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200921174320.46062-7-thuth@redhat.com> Message-Id: <20200925154027.12672-15-alex.bennee@linaro.org>
115 lines
2.7 KiB
YAML
115 lines
2.7 KiB
YAML
|
|
.cross_system_build_job_template: &cross_system_build_job_definition
|
|
stage: build
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
|
|
timeout: 80m
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH
|
|
../configure --enable-werror $QEMU_CONFIGURE_OPTS --disable-user
|
|
--target-list-exclude="aarch64-softmmu i386-softmmu microblaze-softmmu
|
|
mips-softmmu mipsel-softmmu mips64-softmmu ppc64-softmmu sh4-softmmu
|
|
xtensa-softmmu"
|
|
- make -j$(expr $(nproc) + 1) all check-build
|
|
|
|
.cross_user_build_job_template: &cross_user_build_job_definition
|
|
stage: build
|
|
image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH
|
|
../configure --enable-werror $QEMU_CONFIGURE_OPTS --disable-system
|
|
- make -j$(expr $(nproc) + 1) all check-build
|
|
|
|
cross-armel-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-armel-cross
|
|
|
|
cross-armel-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-armel-cross
|
|
|
|
cross-armhf-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-armhf-cross
|
|
|
|
cross-armhf-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-armhf-cross
|
|
|
|
cross-arm64-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-arm64-cross
|
|
|
|
cross-arm64-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-arm64-cross
|
|
|
|
cross-mips-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-mips-cross
|
|
|
|
cross-mips-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-mips-cross
|
|
|
|
cross-mipsel-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-mipsel-cross
|
|
|
|
cross-mipsel-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-mipsel-cross
|
|
|
|
cross-mips64el-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-mips64el-cross
|
|
|
|
cross-mips64el-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-mips64el-cross
|
|
|
|
cross-ppc64el-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-ppc64el-cross
|
|
|
|
cross-ppc64el-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-ppc64el-cross
|
|
|
|
cross-s390x-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: debian-s390x-cross
|
|
|
|
cross-s390x-user:
|
|
<<: *cross_user_build_job_definition
|
|
variables:
|
|
IMAGE: debian-s390x-cross
|
|
|
|
cross-win32-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: fedora-win32-cross
|
|
|
|
cross-win64-system:
|
|
<<: *cross_system_build_job_definition
|
|
variables:
|
|
IMAGE: fedora-win64-cross
|