How to solve a stuck Gitlab CI pipeline?

In my case, the pipeline was stuck because of two things:

  1. The tags specified in the .gitlab-ci.yml do not match those in the runner configuration.

  2. If you specify the simulator in the build command, ensure that you write the right version of the simulator.

Once I did these changes, everything worked well!

Good luck.


In my case the pipeline was stuck because the only available runner had the option "Can run untagged jobs" set to "No" and the job was really untagged. One can fix this issue by changing the "Can run untagged jobs" option or by adding a tag to the appropriate section of the ".gitlab-ci.yml" file in the repository. In my case it was section default:tags:.

(It seems that your case is much more complicated. However I've came across this issue twice a month, and I've forgotten the decision at the second time. Thus I've came to this page which looks appropriate to save the decision. Hope the answer will help someone else.)