Module: Mesa Branch: master Commit: f2b8051d69b58a5cc22f15b7a4436c8e3281348f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f2b8051d69b58a5cc22f15b7a4436c8e3281348f
Author: Michel Dänzer <[email protected]> Date: Wed Sep 18 16:28:41 2019 +0200 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 <[email protected]> Reviewed-by: Eric Anholt <[email protected]> --- .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 _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
