Build in Gitlab does not change from "Pending"

0

Recently I deleted a repository in Gitlab (I use their own server) and created a new one, but when I give commits and pushs a build : pending "no commit, warning:

  

.gitlab-ci.yml not found in this commit

None of my commits are going by (having a green light). I've already tried to create a new .gitlab-ci.yml file, but I'm not guessing. I'm starting git now.

How can I fix this?

    
asked by anonymous 14.05.2016 / 15:25

1 answer

1

If you want to use GitLab's Continuous Integration (CI) system, you will need to have a .gitlab-ci.yml valid in your master branch; otherwise, the error mentioned above will always occur.

But if you do not plan to use the CI, go to the project settings and uncheck the Builds option.

    
06.09.2016 / 21:04