Message ID | 20220524093141.91012-1-thuth@redhat.com |
---|---|
State | New |
Headers | show |
Series | .gitlab-ci.d/container-cross: Fix RISC-V container dependencies / stages | expand |
Thomas Huth <thuth@redhat.com> writes: > The "riscv64-debian-cross-container" job does not depend on any other > container job from the first stage, so we can move it to the first > stage, too. > > The "riscv64-debian-test-cross-container" job needs the debian11 > container, so we should add a proper "needs:" statement here. Queued to testing/next, thanks.
diff --git a/.gitlab-ci.d/container-cross.yml b/.gitlab-ci.d/container-cross.yml index 26281ce4f9..f21d7a2a14 100644 --- a/.gitlab-ci.d/container-cross.yml +++ b/.gitlab-ci.d/container-cross.yml @@ -123,7 +123,7 @@ ppc64el-debian-cross-container: riscv64-debian-cross-container: extends: .container_job_template - stage: containers-layer2 + stage: containers # as we are currently based on 'sid/unstable' we may break so... allow_failure: true variables: @@ -133,6 +133,7 @@ riscv64-debian-cross-container: riscv64-debian-test-cross-container: extends: .container_job_template stage: containers-layer2 + needs: ['amd64-debian11-container'] variables: NAME: debian-riscv64-test-cross
The "riscv64-debian-cross-container" job does not depend on any other container job from the first stage, so we can move it to the first stage, too. The "riscv64-debian-test-cross-container" job needs the debian11 container, so we should add a proper "needs:" statement here. Signed-off-by: Thomas Huth <thuth@redhat.com> --- .gitlab-ci.d/container-cross.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)