From 43111ea74589db078aa7d385d49d480097d22439 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Sat, 16 May 2020 12:07:42 +0200 Subject: [PATCH] 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: --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.30.2