I did several tests creating very simple repositories only with the .gitlab-ci.yml but it still does not appear, I even created another gitlab account from scratch but it behaves the same.
For these examples I am not using anything advanced, neither only / except, nor rules, nor merge_requests, not branches anything … a single file in master is the simplest thing in the world.
This is my .gitlab-ci.yml
stages:
- build
- test
build:
stage: build
script:
- echo "building..."
test:
stage: test
script:
- echo "testing..."
integration-test:
stage: test
script:
- echo "integration testing..."
The only difference was in the pipeline editor in the “Visualize” option, now it shows the connections, but that’s not the point that I’m trying to solve:
Great!! , not a problem at all. In fact my jobs work correctly. It seemed strange to me that from one moment to the next I would no longer see the connections and I thought that something was wrong with my pipeline or some configuration.
Thanks for raising this @dacardona The reason we removed the links in the main pipeline graph is because of a common misconception about them.
The links we showed between jobs on the pipeline graph previously, were arbritrary links drawn between every job and didn’t reflect the actual needs links in the pipeline. If you look at this example of an older pipeline, you should see what I mean.