The cross-win64-system job is one of the slowest in our gitlab-ci. With the upcoming changes that introduce ccache, it might even get slower initially as long as the cache is not populated yet. Thus let's limit the amount of targets that we build here even further to avoid that we might hit the 80 minutes timeout here. Most of the others targets are already covered by the win32 job anyway.
Signed-off-by: Thomas Huth <th...@redhat.com> --- .gitlab-ci.d/crossbuilds.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.d/crossbuilds.yml b/.gitlab-ci.d/crossbuilds.yml index 2d95784ed5..017731a894 100644 --- a/.gitlab-ci.d/crossbuilds.yml +++ b/.gitlab-ci.d/crossbuilds.yml @@ -189,6 +189,12 @@ cross-win64-system: job: win64-fedora-cross-container variables: IMAGE: fedora-win64-cross + script: + - PKG_CONFIG_PATH=$PKG_CONFIG_PATH + ./configure --enable-werror --disable-docs $QEMU_CONFIGURE_OPTS + --target-list="cris-softmmu x86_64-softmmu microblaze-softmmu + mipsel-softmmu mips64-softmmu ppc-softmmu sh4-softmmu xtensa-softmmu" + - make -j$(expr $(nproc) + 1) all check-build cross-amd64-xen-only: extends: .cross_accel_build_job -- 2.27.0