我在创建版本时遇到此错误。我已经卸载了Git参数插件。我也检查了URL,我用它来克隆Repo。有没有人能告诉我我错过了什么。
The default value has been returned
No Git repository configured in SCM configuration or plugin is configured wrong
Options'Use repository' is set as: 'exapmle.git'
Please check the configuration
2条答案
按热度按时间w6lpcovy1#
只是遇到了同样的问题,并通过完全删除
useRepository
选项解决了它。如文档https://plugins.jenkins.io/git-parameter/中所述,不需要在单一回购管道中设置该选项,因为:此插件将从您的项目中读取GIT SCM配置。
请参阅https://plugins.jenkins.io/git-parameter/#plugin-content-error-handling
如果未配置存储库,或者“使用存储库”选项与任何存储库都不匹配,则会出现此错误。
y53ybaqx2#
我现在在2.361.1上遇到了这个问题--我使用了带有git参数的Jenkinsfile。当我开始构建时,它要求我提供参数,但没有加载任何选项。
即使在我复制了另一个工作正常的Jenkins文件之后,它还是这样做了。然后,我注意到Jenkinsfile窗口下有一个小纸条--我禁用了Groovy沙箱,纸条要求我批准该脚本。
批准后,它开始工作;目前的注解是
The script is already approved
。