Bitbucket 管道随机失败 - "couldn't clone the repository" 错误
Bitbucket Pipelines randomly fail - "couldn't clone the repository" error
有时 Bitbucket 管道会无缘无故地失败。它通常发生在功能或修补程序分支上(目前它从未发生在 master 上,但这可能只是统计数据)。
多次重新运行没有帮助。
这些分支上的最新代码没有触及 bitbucket-pipelines.yml
在其他分支和 master 上运行良好的文件。
返回的错误是:
We hit a glitch and couldn't clone the repository. Please rerun the
pipeline. See our documentation
View bitbucket-pipelines.yml
好的。刚刚尝试了最愚蠢的事情。 推送了一个空提交 以触发管道并且有效:
git commit --allow-empty -m "trigger pipelines"
我想任何提交都可以,但我没有理由修改我的代码¯\_(ツ)_/¯
我遇到了同样的问题。对我来说,我实际上是在一个特定的提交上触发了一个自定义管道,我已经重新设置了基础。在提供了正确的提交哈希后,我又回来了。
有时 Bitbucket 管道会无缘无故地失败。它通常发生在功能或修补程序分支上(目前它从未发生在 master 上,但这可能只是统计数据)。
多次重新运行没有帮助。
这些分支上的最新代码没有触及 bitbucket-pipelines.yml
在其他分支和 master 上运行良好的文件。
返回的错误是:
We hit a glitch and couldn't clone the repository. Please rerun the pipeline. See our documentation
View bitbucket-pipelines.yml
好的。刚刚尝试了最愚蠢的事情。 推送了一个空提交 以触发管道并且有效:
git commit --allow-empty -m "trigger pipelines"
我想任何提交都可以,但我没有理由修改我的代码¯\_(ツ)_/¯
我遇到了同样的问题。对我来说,我实际上是在一个特定的提交上触发了一个自定义管道,我已经重新设置了基础。在提供了正确的提交哈希后,我又回来了。