Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 GitLab 中有一个与 Gitlab CI 集成的项目。每次推动掌握都会安排项目的构建。
但是,当创建一个新分支并将其推送到存储库时,gitlab CI 中不会进行构建。启用其他分支构建的设置是什么 - 或者,我怎样才能找出问题所在?
我怎么知道出了什么问题?
分析.gitlab-ci.yml。看看这个,我会猜测你已经限制了你的工作执行:
.gitlab-ci.yml
... only: - master ...