在我的项目Jenkinsfile
中,我需要克隆另一个github存储库,并运行特定任务。这就是我正在尝试的:
stage ('mystage') {
dir('foo') {
git url: 'https://github.com/something.git'
}
sh('cd foo')
sh('gradle taskname')
}
git repo克隆工作正常。但是我无法执行任何任务。我收到错误消息
11:23:16 > Failed to apply plugin [id 'org.gradle.java']
11:23:16 > No version strategies were selected. Run build with --info for more detail.
我该如何克服?
答案 0 :(得分:0)
我能够使用管道中的https://jenkins.io/doc/pipeline/steps/pipeline-build-step/
的build
选项解决此问题