diff options
author | Thomas Huth <thuth@redhat.com> | 2022-05-27 16:35:32 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2022-06-01 10:21:49 +0100 |
commit | 6fd4e75610c08820faabf9c544f2f2af2b1b8334 (patch) | |
tree | 8111c23da27eb2018170c10de3e63b5a987afba6 /.gitlab-ci.d/crossbuilds.yml | |
parent | 658f2da1f33aaf86d7b345891f479462a7d1e2d3 (diff) |
.gitlab-ci.d/crossbuilds: Fix the dependency of the cross-i386-tci job
The cross-i386-tci job uses the fedora-i386-cross image, so we should make sure
that the corresponding job that builds it (the i386-fedora-cross-container job)
has finished before we start the TCI job.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220524092600.89997-1-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20220527153603.887929-3-alex.bennee@linaro.org>
Diffstat (limited to '.gitlab-ci.d/crossbuilds.yml')
-rw-r--r-- | .gitlab-ci.d/crossbuilds.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.d/crossbuilds.yml b/.gitlab-ci.d/crossbuilds.yml index 17d6cb3e45..4a5fb6ea2a 100644 --- a/.gitlab-ci.d/crossbuilds.yml +++ b/.gitlab-ci.d/crossbuilds.yml @@ -62,6 +62,8 @@ cross-i386-user: cross-i386-tci: extends: .cross_accel_build_job timeout: 60m + needs: + job: i386-fedora-cross-container variables: IMAGE: fedora-i386-cross ACCEL: tcg-interpreter |