我正在尝试将 Webhook 与 gitlab 和 jenkins 集成。我已经使用 URL 通过上游下游作业完成了它。在尝试通过声明性管道rece = reate时,我处于静止状态
pipeline {
agent any
stages {
stage('fetchcodeFromGit') {
steps {
timeout(time: 30) {
git(url: 'http:<<>>/JenkinsPipeline.git', branch: 'master', credentialsId: 'QualityAssurance', poll: true)
}
}
}
任何人都可以帮助文档或任何示例片段吗?