我正在尝试使用 Jenkins 中的共享库调用函数。共享库 groovy 文件存在于存储库的 /vars 文件夹中。
我尝试过共享库文件的其他名称。我尝试也使用 testFunc.call()、testFunc、testFunc() 来调用它
testFunc.groovy
import hudson.model.*
import hudson.EnvVars
import groovy.json.JsonSlurperClassic
import groovy.json.JsonBuilder
import groovy.json.JsonOutput
import groovy.json.*
import java.net.URL
def coveragepercentage
def testFunc(){
def param = "${env:TestCoverage}"
echo param
def paramInt = param as int
echo "Integer "+ paramInt
def jsondata = readFile(file:'./target/site/munit/coverage/munit-coverage.json')
def data = new JsonSlurperClassic().parseText(jsondata)
coveragepercentage = data.coverage
echo "${coveragepercentage}"
if(coveragepercentage > paramInt){
println("This value is smaller")
sh "exit 1"
currentBuild.result = 'FAILURE'
}
}
使用上述共享库的 Jenkinsfile
@Library('shared-lib2') _
import hudson.model.*
import hudson.EnvVars
import groovy.json.JsonSlurperClassic
import groovy.json.JsonBuilder
import groovy.json.JsonOutput
import groovy.json.*
import java.net.URL
pipeline{
agent any
tools {
maven 'Maven'
jdk 'JAVA'
}
stages {
stage('build') {
steps {
configFileProvider([configFile(fileId: 'config', variable: 'MAVEN_SETTINGS_XML')]) {
sh "mvn -s $MAVEN_SETTINGS_XML clean package"
}
}
}
stage('test function'){
steps{
script{
testFunc()
}
}
}
stage('MUnit Test Report') {
steps{
script {
publishHTML(target:[allowMissing: false,alwaysLinkToLastBuild: true,keepAll: true,reportDir: 'target/site/munit/coverage',reportFiles: 'summary.html',reportName: 'MUnit Test Report',reportTitles: 'MUnit Test Coverage Report'])
}
}
}
}
错误:hudson.remoting.ProxyException:groovy.lang.MissingMethodException:没有方法签名:testFunc.call()适用于参数类型:()值:[]
就我而言,我有
call() {
虽然应该如此
def call() {
耻辱。
在您的
testFunc.groovy
中,您需要将函数从 testFunc
重命名为 call()
。
进行这些更改后,将可以作为声明性步骤调用您的函数。
我将其添加到我的常规中,它对我有用。不知道这是否有帮助!
解决方案
def call(body) {
def config = [:]
body.resolveStrategy = Closure.DELEGATE_FIRST
body.delegate = config
body()
pipeline{
//your code
}
}