1

I am trying to write my first GitLab pipeline description. I use the needs parameter, and I still don't know why I get this mashed connection setup. Does anyone know what I am doing wrong? Here is what I want to achieve`.

enter image description here

But instead this is what I get:

enter image description here

foo:
    stage: build

bar:
    stage: build

foo-test:
    stage: test
    needs: ["foo"]

bar-test:
    stage: test
    needs: ["bar"]

1 Answer 1

2

Nothing is wrong with this. You should be seeing that bar-test starts immediately after bar is done.

The UI is currently going through an overhaul as they released this before doing that, hence you're still seeing the joined up pipeline graph.

There's an open issue discussing how to resolve this for the future on GitLab.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.