From f2b8051d69b58a5cc22f15b7a4436c8e3281348f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Wed, 18 Sep 2019 16:28:41 +0200 Subject: [PATCH] gitlab-ci: Add test-container:arm64 to needs: for arm64 test jobs Without this, it was theoretically possible for the jobs to run before the docker image was ready. v2: * Use - list syntax instead of [] (Eric Engestrom) Reviewed-by: Eric Engestrom Reviewed-by: Eric Anholt --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db0e132d53f..3d0e884bce5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -423,7 +423,9 @@ arm64_a630_gles2: - mesa-cheza dependencies: - meson-arm64 - needs: [ meson-arm64 ] + needs: + - meson-arm64 + - test-container:arm64 arm64_a630_gles31: extends: arm64_a630_gles2 -- 2.30.2