summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.d
diff options
context:
space:
mode:
authorAlex Bennée2022-09-14 17:59:21 +0200
committerAlex Bennée2022-09-20 16:14:59 +0200
commit9864b7f8ac5f06d7ce610997e01c187c3d01967c (patch)
tree7dbeb9605eb333e4dd35ae103aa9714666c3e88f /.gitlab-ci.d
parentMerge tag 'pull-hmp-20220915a' of https://gitlab.com/dagrh/qemu into staging (diff)
downloadqemu-9864b7f8ac5f06d7ce610997e01c187c3d01967c.tar.gz
qemu-9864b7f8ac5f06d7ce610997e01c187c3d01967c.tar.xz
qemu-9864b7f8ac5f06d7ce610997e01c187c3d01967c.zip
gitlab: reduce targets in cross_user_build_job
We already limit the scope of the cross system build to reduce the cross build times. With the recent addition of more targets we are also running into timeout issues for some of the cross user builds. I've selected a few of those linux-user targets which are less likely to be in common use as distros don't have pre-built rootfs for them. I've also added the same CROSS_SKIP_TARGETS variable as is occasionally used to further limit cross system builds. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220914155950.804707-2-alex.bennee@linaro.org>
Diffstat (limited to '.gitlab-ci.d')
-rw-r--r--.gitlab-ci.d/crossbuild-template.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitlab-ci.d/crossbuild-template.yml b/.gitlab-ci.d/crossbuild-template.yml
index 28b2142ec2..5e8892fd49 100644
--- a/.gitlab-ci.d/crossbuild-template.yml
+++ b/.gitlab-ci.d/crossbuild-template.yml
@@ -46,5 +46,8 @@
- cd build
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH
../configure --enable-werror --disable-docs $QEMU_CONFIGURE_OPTS
- --disable-system
+ --disable-system --target-list-exclude="aarch64_be-linux-user
+ alpha-linux-user cris-linux-user m68k-linux-user microblazeel-linux-user
+ nios2-linux-user or1k-linux-user ppc-linux-user sparc-linux-user
+ xtensa-linux-user $CROSS_SKIP_TARGETS"
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS