As we run check-qtest in "SLOW" mode this can timeout so split into two jobs.
Signed-off-by: Alex Bennée <alex.ben...@linaro.org> --- .gitlab-ci.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc3a561d9bc..5c863562913 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -153,8 +153,9 @@ acceptance:system-fedora-misc: - make check-acceptance <<: *post_acceptance -build-disabled: +build:system-fedora-misc-disabled: image: fedora:latest + stage: build <<: *before_script_dnf script: - mkdir build @@ -167,7 +168,19 @@ build-disabled: --disable-vhost-net --disable-vhost-crypto --disable-vhost-user --target-list="i386-softmmu ppc64-softmmu mips64-softmmu i386-linux-user" - make -j"$JOBS" - - make -j"$JOBS" check-qtest SPEED=slow + artifacts: + paths: + - build + +qtest:system-fedora-misc-disabled: + image: fedora:latest + stage: test + dependencies: + - build:system-fedora-misc-disabled + <<: *before_script_dnf + script: + - cd build + - make check-qtest SPEED=slow build-tcg-disabled: image: centos:8 -- 2.20.1