我正在为我的ant应用程序编写一个jenkins文件。我已经结账了。现在我想使用管道安装ant插件,而不是手动安装。
我得到错误:script.sh找不到
pipeline{
agent{
node{
label 'pqr'
}
}
stages{
stage('Pull Source Code') {
steps{
checkout([
$class: 'GitSCM',
branches: scm.branches,
doGenerateSubmoduleConfigurations: false,
extensions: scm.extensions + [[$class: 'SubmoduleOption', disableSubmodules: false, recursiveSubmodules: true, reference: '', trackingSubmodules: false]],
submoduleCfg: [],
userRemoteConfigs: scm.userRemoteConfigs])
echo "${scm.branches}"
}
}
stage('Ant version') {
steps {
echo "Hello, Ant"
sh 'ant -version'
}
}
}
}
暂无答案!
目前还没有任何答案,快来回答吧!