From: Michel Dänzer Date: Sat, 16 May 2020 10:07:42 +0000 (+0200) Subject: gitlab-ci: Also list arm/x86_build in needs: of test jobs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=43111ea74589db078aa7d385d49d480097d22439;p=mesa.git gitlab-ci: Also list arm/x86_build in needs: of test jobs Without this, the test jobs may spuriously run if the arm/x86_build jobs fail. Reviewed-by: Eric Anholt Part-of: --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 85c390de996..c3b2c0351aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -211,6 +211,7 @@ arm_test: TAG: *arm_test image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG" needs: + - arm_build - meson-arm64 - arm_test @@ -619,6 +620,7 @@ meson-mingw32-x86_64: TAG: *x86_test-gl image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG" needs: + - x86_build - meson-testing - x86_test-gl @@ -629,6 +631,7 @@ meson-mingw32-x86_64: TAG: *x86_test-vk image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG" needs: + - x86_build - meson-testing - x86_test-vk