- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个如下所示的 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 的管道完成后通过阅读此 block Invoke a remote jenkins file from another Jenkinsfile 添加了 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$2.run(Request.java:369)
at hudson.remoting.InterceptingExecutorService$1.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$1.call(Continuable.java:174)
at com.cloudbees.groovy.cps.Continuable$1.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.access$101(SandboxContinuable.java:34)
at org.jenkinsci.plugins.workflow.cps.SandboxContinuable.lambda$run0$0(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.access$200(CpsThreadGroup.java:83)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:244)
at org.jenkinsci.plugins.workflow.cps.CpsThreadGroup$2.call(CpsThreadGroup.java:232)
at org.jenkinsci.plugins.workflow.cps.CpsVmExecutorService$2.call(CpsVmExecutorService.java:64)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at hudson.remoting.SingleLaneExecutorService$1.run(SingleLaneExecutorService.java:131)
at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
at jenkins.security.ImpersonatingExecutorService$1.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。但是您有一些选择:
根据您的更新,您尝试使用 4 选项。您应该在使用之前安装该插件。
关于groovy - 将不同 repo 的一个 Jenkinsfile 调用到另一个 jenkinsfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53695859/
我有一个如下所示的 Jenkinsfile-A,在这个文件中,我需要在执行所有阶段后调用另一个 Jenkinsfile-B。 Jenkinsfile-A #!groovy pipeline {
我需要在构建时从基础项目加载外部项目。 (我拥有这两个代码库。)外部项目包含一个我需要从基础项目的 Jenkinsfile 执行的 Jenkinsfile,以及其他需要运行的脚本。 但是,在项目中克隆
在 Jenkinsfile 的以下代码片段中使用了什么 Groovy 语言构造、语法或控制结构? stage('Stage 1') { steps { // One or mo
java.lang.NoSuchMethodError:在步骤 [archive、bat、build、catchError、checkout、deleteDir、dir、dockerFingerpri
我如何在多分支管道 jenkinsfile(declerative)中使用此 dsl 脚本? parameters { activeChoiceParam('States') {
我公司的 Jenkins 使用隐式加载的全局库。 它们是 c***,我不希望每个管道都使用它们。加载它们需要 10 多秒。 有人知道如何抑制它们吗?谢谢! 最佳答案 不幸的是,无法抑制全局共享管道。我
我想通过 jenkinsfiles 使用稍微复杂一点的管道构建,并且有一些可重用的步骤,因为我有很多或类似的项目。我将 jenkins 2.0 与管道插件一起使用。我知道你可以加载包含一些通用代码片段
为了解释这个问题,假设我有 2 个 jenkins 工作。 作业 1:PARAM_TEST1 它接受一个名为“MYPARAM”的参数化值 作业 2:PARAM_TEST2 它还接受一个名为“MYPAR
我有一个管道作业,它使用两个单独的节点(一个用于构建,一个用于测试),我想在我的 Jenkinsfile 中的两个代码块之间共享一个变量.我认为这是可能的,但我对 groovy 和 Jenkinsfi
是否有任何内置变量可以访问当前正在执行的构建的文本? 我尝试使用类似 currentBuild.log 的东西, currentBuild.buildLog但没有任何运气。 最佳答案 实际上可以使用
我们正在使用 脚本管道 我们 Jenkinsfile 的语法它定义了很多阶段来构建和部署我们的代码。我们有一个用例,如果我在做 ,我想运行我的所有阶段。完整版 但如果我需要执行一些 AWS 路由,则只
我有一些代码需要在不同的操作系统上运行(实际上是构建、测试和包,但例如只运行 tox )。目前我的 Jenkinsfile看起来像这样: pipeline { // Where to run
我有以下我认为设置正确的 Jenkinsfile。我用过 https://jenkins.io/doc/book/pipeline/syntax/#sequential-stages作为一个例子,但出
我正在尝试将 Jenkins 文件用于我们在 Jenkins 中的所有构建,但我遇到了以下问题。 我们基本上有 3 种构建: pull-request 构建 - 代码审查后将合并到 master,如果
我是 Jenkins 管道的新手;我正在定义一个声明性语法管道,但我不知道是否可以解决我的问题,因为我没有找到解决方案。 在这个例子中,我需要将一个变量传递给ansible插件(在旧版本中我使用ENV
我有什么 我正在尝试使用两种不同的代理来运行我的 Jenkins 管道。我想在同一个代理上执行某些流程,但到目前为止我无法执行此操作,因为代理定义只有 2 个选项:我可以在管道顶部执行,或者我可以将代
所以我有一个jenkinsfile,其中有我的管道。我希望能够区分发送到主服务器的拉取请求和发送到其他地方的拉取请求。我找到了用于检测拉取请求的示例代码 - 像这样: env.BRANCH_NAME.
所以我的团队正在尝试为我们的 Web 开发项目创建一个 Jenkinsfile。我们以 React 作为前端,以 ExpressJS 作为后端。目前的结构是 root |-- react folde
我会在 Jenkinsfile 的“when”语法中评估两个条件。特别是,我需要检查 params.x 和 params.y 何时为真。我可以使用“and”运算符将两者插入同一个表达式吗? 最佳答案
我想为新工作使用新的 Jenkinsfile。 我在个人存储库中有 jenkinsfile: 我在 bash 中通过 git ls-remote 从另一个 gitlab 存储库获取分支。我将它们存储在
我是一名优秀的程序员,十分优秀!