将不同 repo 的一个 Jenkinsfile 调用到另一个 jenkinsfile
invoke one Jenkinsfile of different repo to another jenkinsfile
我有一个如下所示的 Jenkinsfile-A,在这个文件中,我需要在执行所有阶段后调用另一个 Jenkinsfile-B。
Jenkinsfile-A
#!groovy
pipeline {
agent { label "" }
triggers { pollSCM('*/5 * * * *') }
stages {
stage('Build Artifact') {
steps {
}
}
stage('Publish Artifact') {
steps {
}
}
}//stages
post {
always {
deleteDir() /* clean up our workspace */
}
}
}//pipeline
def jenkinsFile
stage('Loading Jenkinsfile'){
jenkinsFile = fileLoader.fromGit('Jenkinsfile', 'git@bitbucket.org:org-us-dev/org-cicd-pipelines.git', 'master', 'org-service-user', 'ORG')
}
jenkinsFile.start()
Jenkinsfile-B
#!groovy
void Download_Repositories(){
}
void SonarQube_Analysis(){
}
void Deploy_And_Test(){
}
void Prepare_Sonar_Scanner(){
}
void Publish_Artifact(){
}
void Host_Verification(){
}
pipeline {
agent { label '' }
// triggers { pollSCM('*/5 * * * *') }
stages {
stage('Download Repositories') {
steps {
Download_Repositories()
}
}
stage('Host Verification') {
steps {
Host_Verification()
}
}
stage('Env: DEV - Deploy and Test') {
steps {
Deploy_And_Test()
}
}
stage('Prepare Sonar Scanner') {
steps {
Prepare_Sonar_Scanner()
}
}
stage('SonarQube Analysis') {
steps {
SonarQube_Analysis()
}
}
stage('Publish Artifact') {
steps {
Publish_Artifact()
}
}
}//stages
post {
always {
deleteDir() /* clean up our workspace */
}
}//post
}//pipeline
我在 Jenkinsfile-A 中通过读取此块 完成管道后添加了 def,但这导致了错误。
我的错误日志-
Loading from Jenkinsfile.groovy
[Pipeline] load
[Pipeline] // load
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] End of Pipeline
java.nio.file.NoSuchFileException: /data/jenkins/workspace/org-master-source-build/libLoader/Jenkinsfile.groovy
at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86)
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102)
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107)
at sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:214)
at java.nio.file.Files.newByteChannel(Files.java:361)
at java.nio.file.Files.newByteChannel(Files.java:407)
at java.nio.file.spi.FileSystemProvider.newInputStream(FileSystemProvider.java:384)
at java.nio.file.Files.newInputStream(Files.java:152)
at hudson.FilePath$Read.invoke(FilePath.java:1901)
at hudson.FilePath$Read.invoke(FilePath.java:1893)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
at hudson.remoting.UserRequest.perform(UserRequest.java:212)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request.run(Request.java:369)
at hudson.remoting.InterceptingExecutorService.call(InterceptingExecutorService.java:72)
Caused: java.io.IOException
at hudson.remoting.FastPipedInputStream.read(FastPipedInputStream.java:169)
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
at java.io.InputStreamReader.read(InputStreamReader.java:184)
at java.io.Reader.read(Reader.java:140)
at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:2001)
at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:1980)
at org.apache.commons.io.IOUtils.copy(IOUtils.java:1957)
at org.apache.commons.io.IOUtils.copy(IOUtils.java:1907)
at org.apache.commons.io.IOUtils.toString(IOUtils.java:778)
at org.apache.commons.io.IOUtils.toString(IOUtils.java:759)
at hudson.FilePath.readToString(FilePath.java:1980)
at org.jenkinsci.plugins.workflow.cps.steps.LoadStepExecution.start(LoadStepExecution.java:37)
at org.jenkinsci.plugins.workflow.cps.DSL.invokeStep(DSL.java:270)
at org.jenkinsci.plugins.workflow.cps.DSL.invokeMethod(DSL.java:180)
at org.jenkinsci.plugins.workflow.cps.CpsScript.invokeMethod(CpsScript.java:122)
at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.call(PogoMetaClassSite.java:48)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:48)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:113)
at com.cloudbees.groovy.cps.sandbox.DefaultInvoker.methodCall(DefaultInvoker.java:20)
at org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL.FileLoaderDSLImpl.load(jar:file:/opt/efs/jenkins/plugins/workflow-remote-loader/WEB-INF/lib/workflow-remote-loader.jar!/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy:109)
at org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL.FileLoaderDSLImpl.fromGit(jar:file:/opt/efs/jenkins/plugins/workflow-remote-loader/WEB-INF/lib/workflow-remote-loader.jar!/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy:46)
at org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL.FileLoaderDSLImpl.withGit(jar:file:/opt/efs/jenkins/plugins/workflow-remote-loader/WEB-INF/lib/workflow-remote-loader.jar!/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy:66)
at ___cps.transform___(Native Method)
at com.cloudbees.groovy.cps.impl.ContinuationGroup.methodCall(ContinuationGroup.java:57)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:109)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor127.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.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:103)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor127.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.ContinuationGroup.methodCall(ContinuationGroup.java:60)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:109)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor127.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:83)
at com.cloudbees.groovy.cps.Continuable.call(Continuable.java:174)
at com.cloudbees.groovy.cps.Continuable.call(Continuable.java:163)
at org.codehaus.groovy.runtime.GroovyCategorySupport$ThreadCategoryInfo.use(GroovyCategorySupport.java:122)
at org.codehaus.groovy.runtime.GroovyCategorySupport.use(GroovyCategorySupport.java:261)
at com.cloudbees.groovy.cps.Continuable.run0(Continuable.java:163)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.access1(SandboxContinuable.java:34)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.lambda$run0[=12=](SandboxContinuable.java:59)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox.runInSandbox(GroovySandbox.java:108)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.run0(SandboxContinuable.java:58)
at org.jenkinsci.plugins.workflow.cps.CpsThread.runNextChunk(CpsThread.java:174)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.run(CpsThreadGroup.java:332)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.access0(CpsThreadGroup.java:83)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.call(CpsThreadGroup.java:244)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.call(CpsThreadGroup.java:232)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService.call(CpsVmExecutorService.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at hudson.remoting.SingleLaneExecutorService.run(SingleLaneExecutorService.java:131)
at jenkins.util.ContextResettingExecutorService.run(ContextResettingExecutorService.java:28)
at jenkins.security.ImpersonatingExecutorService.run(ImpersonatingExecutorService.java:59)
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:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Finished: FAILURE
无法直接从另一个 jenkinsfile 调用 jenkinsfile。但你有一些选择:
- 使用 build jenkins 步骤来触发构建 运行 你的 jenkinsfile-B。有关详细信息,请参阅 https://jenkins.io/doc/pipeline/steps/pipeline-build-step/
- 使用 load 结合 scm jenkins 步骤来使用你的 jenkinsfile-B 检出存储库并将其加载为 groovy 代码.有关详细信息,请参阅 https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ and https://jenkins.io/doc/pipeline/steps/workflow-cps/#code-load-code-evaluate-a-groovy-source-file-into-the-pipeline-script. But in that case you should rewrite your jenkinsfile-B. You can see example here: https://github.com/jenkinsci/pipeline-examples/tree/master/pipeline-examples/load-from-file
- 创建詹金斯共享库。参见 https://jenkins.io/doc/book/pipeline/shared-libraries/
- 使用管道远程加载器插件 - https://wiki.jenkins.io/display/JENKINS/Pipeline+Remote+Loader+Plugin You can find how to use that plugin here - https://github.com/jenkinsci/workflow-remote-loader-plugin
根据您的更新,您尝试使用 4 选项。您应该在使用之前安装该插件。
安装 https://github.com/jenkinsci/workflow-remote-loader-plugin 并将您的第二个 Jenkinsfile (B) 重命名为 Jenkinsfile.groovy
我有一个如下所示的 Jenkinsfile-A,在这个文件中,我需要在执行所有阶段后调用另一个 Jenkinsfile-B。
Jenkinsfile-A
#!groovy
pipeline {
agent { label "" }
triggers { pollSCM('*/5 * * * *') }
stages {
stage('Build Artifact') {
steps {
}
}
stage('Publish Artifact') {
steps {
}
}
}//stages
post {
always {
deleteDir() /* clean up our workspace */
}
}
}//pipeline
def jenkinsFile
stage('Loading Jenkinsfile'){
jenkinsFile = fileLoader.fromGit('Jenkinsfile', 'git@bitbucket.org:org-us-dev/org-cicd-pipelines.git', 'master', 'org-service-user', 'ORG')
}
jenkinsFile.start()
Jenkinsfile-B
#!groovy
void Download_Repositories(){
}
void SonarQube_Analysis(){
}
void Deploy_And_Test(){
}
void Prepare_Sonar_Scanner(){
}
void Publish_Artifact(){
}
void Host_Verification(){
}
pipeline {
agent { label '' }
// triggers { pollSCM('*/5 * * * *') }
stages {
stage('Download Repositories') {
steps {
Download_Repositories()
}
}
stage('Host Verification') {
steps {
Host_Verification()
}
}
stage('Env: DEV - Deploy and Test') {
steps {
Deploy_And_Test()
}
}
stage('Prepare Sonar Scanner') {
steps {
Prepare_Sonar_Scanner()
}
}
stage('SonarQube Analysis') {
steps {
SonarQube_Analysis()
}
}
stage('Publish Artifact') {
steps {
Publish_Artifact()
}
}
}//stages
post {
always {
deleteDir() /* clean up our workspace */
}
}//post
}//pipeline
我在 Jenkinsfile-A 中通过读取此块
我的错误日志-
Loading from Jenkinsfile.groovy
[Pipeline] load
[Pipeline] // load
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] End of Pipeline
java.nio.file.NoSuchFileException: /data/jenkins/workspace/org-master-source-build/libLoader/Jenkinsfile.groovy
at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86)
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102)
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107)
at sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:214)
at java.nio.file.Files.newByteChannel(Files.java:361)
at java.nio.file.Files.newByteChannel(Files.java:407)
at java.nio.file.spi.FileSystemProvider.newInputStream(FileSystemProvider.java:384)
at java.nio.file.Files.newInputStream(Files.java:152)
at hudson.FilePath$Read.invoke(FilePath.java:1901)
at hudson.FilePath$Read.invoke(FilePath.java:1893)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
at hudson.remoting.UserRequest.perform(UserRequest.java:212)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request.run(Request.java:369)
at hudson.remoting.InterceptingExecutorService.call(InterceptingExecutorService.java:72)
Caused: java.io.IOException
at hudson.remoting.FastPipedInputStream.read(FastPipedInputStream.java:169)
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
at java.io.InputStreamReader.read(InputStreamReader.java:184)
at java.io.Reader.read(Reader.java:140)
at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:2001)
at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:1980)
at org.apache.commons.io.IOUtils.copy(IOUtils.java:1957)
at org.apache.commons.io.IOUtils.copy(IOUtils.java:1907)
at org.apache.commons.io.IOUtils.toString(IOUtils.java:778)
at org.apache.commons.io.IOUtils.toString(IOUtils.java:759)
at hudson.FilePath.readToString(FilePath.java:1980)
at org.jenkinsci.plugins.workflow.cps.steps.LoadStepExecution.start(LoadStepExecution.java:37)
at org.jenkinsci.plugins.workflow.cps.DSL.invokeStep(DSL.java:270)
at org.jenkinsci.plugins.workflow.cps.DSL.invokeMethod(DSL.java:180)
at org.jenkinsci.plugins.workflow.cps.CpsScript.invokeMethod(CpsScript.java:122)
at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.call(PogoMetaClassSite.java:48)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:48)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:113)
at com.cloudbees.groovy.cps.sandbox.DefaultInvoker.methodCall(DefaultInvoker.java:20)
at org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL.FileLoaderDSLImpl.load(jar:file:/opt/efs/jenkins/plugins/workflow-remote-loader/WEB-INF/lib/workflow-remote-loader.jar!/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy:109)
at org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL.FileLoaderDSLImpl.fromGit(jar:file:/opt/efs/jenkins/plugins/workflow-remote-loader/WEB-INF/lib/workflow-remote-loader.jar!/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy:46)
at org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL.FileLoaderDSLImpl.withGit(jar:file:/opt/efs/jenkins/plugins/workflow-remote-loader/WEB-INF/lib/workflow-remote-loader.jar!/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy:66)
at ___cps.transform___(Native Method)
at com.cloudbees.groovy.cps.impl.ContinuationGroup.methodCall(ContinuationGroup.java:57)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:109)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor127.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.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:103)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor127.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.ContinuationGroup.methodCall(ContinuationGroup.java:60)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.dispatchOrArg(FunctionCallBlock.java:109)
at com.cloudbees.groovy.cps.impl.FunctionCallBlock$ContinuationImpl.fixArg(FunctionCallBlock.java:82)
at sun.reflect.GeneratedMethodAccessor127.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:83)
at com.cloudbees.groovy.cps.Continuable.call(Continuable.java:174)
at com.cloudbees.groovy.cps.Continuable.call(Continuable.java:163)
at org.codehaus.groovy.runtime.GroovyCategorySupport$ThreadCategoryInfo.use(GroovyCategorySupport.java:122)
at org.codehaus.groovy.runtime.GroovyCategorySupport.use(GroovyCategorySupport.java:261)
at com.cloudbees.groovy.cps.Continuable.run0(Continuable.java:163)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.access1(SandboxContinuable.java:34)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.lambda$run0[=12=](SandboxContinuable.java:59)
at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox.runInSandbox(GroovySandbox.java:108)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.run0(SandboxContinuable.java:58)
at org.jenkinsci.plugins.workflow.cps.CpsThread.runNextChunk(CpsThread.java:174)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.run(CpsThreadGroup.java:332)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.access0(CpsThreadGroup.java:83)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.call(CpsThreadGroup.java:244)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup.call(CpsThreadGroup.java:232)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService.call(CpsVmExecutorService.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at hudson.remoting.SingleLaneExecutorService.run(SingleLaneExecutorService.java:131)
at jenkins.util.ContextResettingExecutorService.run(ContextResettingExecutorService.java:28)
at jenkins.security.ImpersonatingExecutorService.run(ImpersonatingExecutorService.java:59)
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:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Finished: FAILURE
无法直接从另一个 jenkinsfile 调用 jenkinsfile。但你有一些选择:
- 使用 build jenkins 步骤来触发构建 运行 你的 jenkinsfile-B。有关详细信息,请参阅 https://jenkins.io/doc/pipeline/steps/pipeline-build-step/
- 使用 load 结合 scm jenkins 步骤来使用你的 jenkinsfile-B 检出存储库并将其加载为 groovy 代码.有关详细信息,请参阅 https://jenkins.io/doc/pipeline/steps/workflow-scm-step/ and https://jenkins.io/doc/pipeline/steps/workflow-cps/#code-load-code-evaluate-a-groovy-source-file-into-the-pipeline-script. But in that case you should rewrite your jenkinsfile-B. You can see example here: https://github.com/jenkinsci/pipeline-examples/tree/master/pipeline-examples/load-from-file
- 创建詹金斯共享库。参见 https://jenkins.io/doc/book/pipeline/shared-libraries/
- 使用管道远程加载器插件 - https://wiki.jenkins.io/display/JENKINS/Pipeline+Remote+Loader+Plugin You can find how to use that plugin here - https://github.com/jenkinsci/workflow-remote-loader-plugin
根据您的更新,您尝试使用 4 选项。您应该在使用之前安装该插件。
安装 https://github.com/jenkinsci/workflow-remote-loader-plugin 并将您的第二个 Jenkinsfile (B) 重命名为 Jenkinsfile.groovy