How to set Jenkins DSL pipeline commands to variable in groovy?
I'm trying to set the output of certain DSL plugin commands to env. variables in Jenkins DSL and having no luck.
I tried imitating the following way of setting sh scripts output to variables:
env.BUILD_NUM = sh([script: "get_build_number_from_s3 ${env.TARGET_ENV}", returnStdout: true]).trim()
The first one I'm trying to do is the git module.
I set my command like the following:
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
sh 'ls -lah'
but I get the following error:
WorkflowScript: 119: Expected a step @ line 119, column 13.
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
^
1 error
at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1085)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:603)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:133)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:127)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:559)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:520)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:319)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Finished: FAILURE
Basically, I'm trying to set the output of commands to variables, that way I can only show the output when DEBUG flag is set to abstract extraneous output for developers so they don't have to parse through pages of text.
Thanks for your inputs.
jenkins jenkins-plugins
add a comment |
I'm trying to set the output of certain DSL plugin commands to env. variables in Jenkins DSL and having no luck.
I tried imitating the following way of setting sh scripts output to variables:
env.BUILD_NUM = sh([script: "get_build_number_from_s3 ${env.TARGET_ENV}", returnStdout: true]).trim()
The first one I'm trying to do is the git module.
I set my command like the following:
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
sh 'ls -lah'
but I get the following error:
WorkflowScript: 119: Expected a step @ line 119, column 13.
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
^
1 error
at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1085)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:603)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:133)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:127)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:559)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:520)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:319)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Finished: FAILURE
Basically, I'm trying to set the output of commands to variables, that way I can only show the output when DEBUG flag is set to abstract extraneous output for developers so they don't have to parse through pages of text.
Thanks for your inputs.
jenkins jenkins-plugins
add a comment |
I'm trying to set the output of certain DSL plugin commands to env. variables in Jenkins DSL and having no luck.
I tried imitating the following way of setting sh scripts output to variables:
env.BUILD_NUM = sh([script: "get_build_number_from_s3 ${env.TARGET_ENV}", returnStdout: true]).trim()
The first one I'm trying to do is the git module.
I set my command like the following:
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
sh 'ls -lah'
but I get the following error:
WorkflowScript: 119: Expected a step @ line 119, column 13.
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
^
1 error
at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1085)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:603)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:133)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:127)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:559)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:520)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:319)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Finished: FAILURE
Basically, I'm trying to set the output of commands to variables, that way I can only show the output when DEBUG flag is set to abstract extraneous output for developers so they don't have to parse through pages of text.
Thanks for your inputs.
jenkins jenkins-plugins
I'm trying to set the output of certain DSL plugin commands to env. variables in Jenkins DSL and having no luck.
I tried imitating the following way of setting sh scripts output to variables:
env.BUILD_NUM = sh([script: "get_build_number_from_s3 ${env.TARGET_ENV}", returnStdout: true]).trim()
The first one I'm trying to do is the git module.
I set my command like the following:
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
sh 'ls -lah'
but I get the following error:
WorkflowScript: 119: Expected a step @ line 119, column 13.
env.DEVOPS_REPO_CLONE = git([branch: "development", credentialsId: 'bitbucket', url: 'https://bitbucket.org/team/repo.git'])
^
1 error
at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:310)
at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1085)
at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:603)
at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:581)
at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:558)
at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:298)
at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:268)
at groovy.lang.GroovyShell.parseClass(GroovyShell.java:688)
at groovy.lang.GroovyShell.parse(GroovyShell.java:700)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:133)
at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:127)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:559)
at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:520)
at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:319)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Finished: FAILURE
Basically, I'm trying to set the output of commands to variables, that way I can only show the output when DEBUG flag is set to abstract extraneous output for developers so they don't have to parse through pages of text.
Thanks for your inputs.
jenkins jenkins-plugins
jenkins jenkins-plugins
edited Jan 5 at 6:14
daspilker
6,1001739
6,1001739
asked Jan 2 at 20:25


Grant ZukelGrant Zukel
444731
444731
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Seems to be that you need to create these variables in environment {...}
or script { ... }
scope. Example:
pipeline {
environment {
FOO = sh (
script: 'pwd',
returnStdout: true
).trim()
}
agent { label "master" }
stages {
stage("first") {
steps {
script {
BAR = sh (
script: 'ls',
returnStdout: true
).trim()
}
sh "echo ${FOO}"
sh "echo ${BAR}"
}
}
}
}
You can use returnStdout
or returnStatus
options for shell scripts as it is described here and here.
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
add a comment |
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54012703%2fhow-to-set-jenkins-dsl-pipeline-commands-to-variable-in-groovy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Seems to be that you need to create these variables in environment {...}
or script { ... }
scope. Example:
pipeline {
environment {
FOO = sh (
script: 'pwd',
returnStdout: true
).trim()
}
agent { label "master" }
stages {
stage("first") {
steps {
script {
BAR = sh (
script: 'ls',
returnStdout: true
).trim()
}
sh "echo ${FOO}"
sh "echo ${BAR}"
}
}
}
}
You can use returnStdout
or returnStatus
options for shell scripts as it is described here and here.
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
add a comment |
Seems to be that you need to create these variables in environment {...}
or script { ... }
scope. Example:
pipeline {
environment {
FOO = sh (
script: 'pwd',
returnStdout: true
).trim()
}
agent { label "master" }
stages {
stage("first") {
steps {
script {
BAR = sh (
script: 'ls',
returnStdout: true
).trim()
}
sh "echo ${FOO}"
sh "echo ${BAR}"
}
}
}
}
You can use returnStdout
or returnStatus
options for shell scripts as it is described here and here.
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
add a comment |
Seems to be that you need to create these variables in environment {...}
or script { ... }
scope. Example:
pipeline {
environment {
FOO = sh (
script: 'pwd',
returnStdout: true
).trim()
}
agent { label "master" }
stages {
stage("first") {
steps {
script {
BAR = sh (
script: 'ls',
returnStdout: true
).trim()
}
sh "echo ${FOO}"
sh "echo ${BAR}"
}
}
}
}
You can use returnStdout
or returnStatus
options for shell scripts as it is described here and here.
Seems to be that you need to create these variables in environment {...}
or script { ... }
scope. Example:
pipeline {
environment {
FOO = sh (
script: 'pwd',
returnStdout: true
).trim()
}
agent { label "master" }
stages {
stage("first") {
steps {
script {
BAR = sh (
script: 'ls',
returnStdout: true
).trim()
}
sh "echo ${FOO}"
sh "echo ${BAR}"
}
}
}
}
You can use returnStdout
or returnStatus
options for shell scripts as it is described here and here.
edited Jan 3 at 9:45
answered Jan 3 at 9:38


biruk1230biruk1230
1,1441417
1,1441417
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
add a comment |
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
I'm not asking about how to run shell scripts I'm asking about how to run jenkins plugin commands from the declarative syntax and mute the output. I can mute the output of my shell scripts but when I run anchore plugin there is no option to mute output, or if I run git plugin I can't mute the output unelss I convert to shell commands and run them with sh script which I don't want to do. I want to mute the plugin output
– Grant Zukel
Jan 4 at 17:48
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54012703%2fhow-to-set-jenkins-dsl-pipeline-commands-to-variable-in-groovy%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown