gpt4 book ai didi

Jenkins Build Pipeline fileLoad 在库文件中不起作用

转载 作者:行者123 更新时间:2023-12-01 22:23:48 27 4
gpt4 key购买 nike

我正在使用 Workflow Remote Loader插件的 fileLoad 函数为我的构建脚本加载依赖项。在我的主文件中,我有以下内容:

构建应用程序.groovy

def java
def util

node {
stage "Setup"
fileLoader.withGit('git@github.com:myorg/build-scripts.git', 'master', '234720asdf8ed1a2', '') {

java = fileLoader.load('lib/java.groovy');
util = fileLoader.load('lib/util.groovy');
}

util.checkIfFileExists('myFile.txt')
def version = java.getJarVersion("api")
}

util.checkIfFileExists() 完美运行,但在调用 java.getJarVersion 时出现问题。在 getJarVersion 中,还有对 util 的依赖。我的 java 库如下:

java.groovy

def util = fileLoader.load('lib/util.groovy')

def getJarVersion() {
...
util.checkIfFileExists('myFile.txt')
...
}

当我在 Jenkins 中运行时出现以下错误:

groovy.lang.MissingPropertyException: No such property: util for class: groovy.lang.Binding
at groovy.lang.Binding.getVariable(Binding.java:62)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.SandboxInterceptor.onGetProperty(SandboxInterceptor.java:224)
at org.kohsuke.groovy.sandbox.impl.Checker$4.call(Checker.java:241)
at org.kohsuke.groovy.sandbox.impl.Checker.checkedGetProperty(Checker.java:238)
at com.cloudbees.groovy.cps.sandbox.SandboxInvoker.getProperty(SandboxInvoker.java:23)
at com.cloudbees.groovy.cps.impl.PropertyAccessBlock.rawGet(PropertyAccessBlock.java:17)
at Script4.checkIfFileExists(Script4.groovy:39)
at Script4.getJarVersion(Script4.groovy:23)
at WorkflowScript.run(WorkflowScript:18)
at ___cps.transform___(Native Method)
at com.cloudbees.groovy.cps.impl.PropertyishBlock$ContinuationImpl.get(PropertyishBlock.java:62)
at com.cloudbees.groovy.cps.LValueBlock$GetAdapter.receive(LValueBlock.java:30)
at com.cloudbees.groovy.cps.impl.PropertyishBlock$ContinuationImpl.fixName(PropertyishBlock.java:54)
at sun.reflect.GeneratedMethodAccessor254.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.cloudbees.groovy.cps.impl.ContinuationPtr$ContinuationImpl.receive(ContinuationPtr.java:72)
at com.cloudbees.groovy.cps.impl.ConstantBlock.eval(ConstantBlock.java:21)
at com.cloudbees.groovy.cps.Next.step(Next.java:58)
at com.cloudbees.groovy.cps.Continuable.run0(Continuable.java:154)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.access$001(SandboxContinuable.java:18)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable$1.call(SandboxContinuable.java:32)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable$1.call(SandboxContinuable.java:29)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox.runInSandbox(GroovySandbox.java:108)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.run0(SandboxContinuable.java:29)
at org.jenkinsci.plugins.workflow.cps.CpsThread.runNextChunk(CpsThread.java:164)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.run(CpsThreadGroup.java:276)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.access$000(CpsThreadGroup.java:78)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:185)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:183)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$2.call(CpsVmExecutorService.java:47)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:112)
at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)

插件的文档说:

Use static initializers within the Groovy file of the loaded file to load more context from neighbor files.

我试过 static def util = fileLoader.load('lib/util.groovy'),但这产生了同样的错误。我也尝试过各种其他组合无济于事。也许这是对 groovy 语言的一些缺乏理解?不太确定。

提前致谢!

最佳答案

对于那些从谷歌那里看到类似错误消息的人,你必须安装 Pipeline Remote Loader 插件。否则它会给你:

groovy.lang.MissingPropertyException: No such property: fileLoader for class: groovy.lang.Binding

关于Jenkins Build Pipeline fileLoad 在库文件中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38172258/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com