从Jenkinsfile中的其他git repo运行任务

时间:2018-10-22 06:08:36

标签: gradle jenkins-pipeline grgit

在我的项目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.

我该如何克服?

1 个答案:

答案 0 :(得分:0)

我能够使用管道中的https://jenkins.io/doc/pipeline/steps/pipeline-build-step/

build选项解决此问题