Jenkinsfile Compare variable Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Jenkinsfile and different strategies for branchesJenkinsfile with two git repositoriesHow to use environment variables in a groovy function using a Jenkinsfilejenkinsfile use traits and other groovy synaxCan a Jenkins job be aborted with success result?Multiple projects sharing a jenkinsfileRejectedAccessException using readJSON in Jenkinsfilerunning shell command from jenkinsfilejenkinsfile variable scopeJenkins Declarative Pipeline - how to get path to Jenkinsfile in use?
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
How do I use the new nonlinear finite element in Mathematica 12 for this equation?
Time to Settle Down!
Generate an RGB colour grid
Is it possible for SQL statements to execute concurrently within a single session in SQL Server?
Is a ledger board required if the side of my house is wood?
What is a fractional matching?
Question about debouncing - delay of state change
How to compare two different files line by line in unix?
How to tell that you are a giant?
How do I find out the mythology and history of my Fortress?
SF book about people trapped in a series of worlds they imagine
How does light 'choose' between wave and particle behaviour?
Dating a Former Employee
Drawing without replacement: why is the order of draw irrelevant?
Selecting user stories during sprint planning
Is it fair for a professor to grade us on the possession of past papers?
Is there hard evidence that the grant peer review system performs significantly better than random?
What is the topology associated with the algebras for the ultrafilter monad?
How were pictures turned from film to a big picture in a picture frame before digital scanning?
Sum letters are not two different
Is CEO the "profession" with the most psychopaths?
What order were files/directories outputted in dir?
Putting class ranking in CV, but against dept guidelines
Jenkinsfile Compare variable
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Jenkinsfile and different strategies for branchesJenkinsfile with two git repositoriesHow to use environment variables in a groovy function using a Jenkinsfilejenkinsfile use traits and other groovy synaxCan a Jenkins job be aborted with success result?Multiple projects sharing a jenkinsfileRejectedAccessException using readJSON in Jenkinsfilerunning shell command from jenkinsfilejenkinsfile variable scopeJenkins Declarative Pipeline - how to get path to Jenkinsfile in use?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a Jenkinsfile where I would like to compare two variables in expression. Say my target should have v1 and v2 the identical value, the step should be skipped, but both variables don't have the identical value, jenkins should cancel the job.
My stage for it looks like this at the moment. Unfortunately, jenkins overrides this step even if both variable ones have different values.
stage('Compare')
when
expression myVar = myVar2
steps
exit
jenkins groovy jenkins-pipeline
add a comment |
I have a Jenkinsfile where I would like to compare two variables in expression. Say my target should have v1 and v2 the identical value, the step should be skipped, but both variables don't have the identical value, jenkins should cancel the job.
My stage for it looks like this at the moment. Unfortunately, jenkins overrides this step even if both variable ones have different values.
stage('Compare')
when
expression myVar = myVar2
steps
exit
jenkins groovy jenkins-pipeline
add a comment |
I have a Jenkinsfile where I would like to compare two variables in expression. Say my target should have v1 and v2 the identical value, the step should be skipped, but both variables don't have the identical value, jenkins should cancel the job.
My stage for it looks like this at the moment. Unfortunately, jenkins overrides this step even if both variable ones have different values.
stage('Compare')
when
expression myVar = myVar2
steps
exit
jenkins groovy jenkins-pipeline
I have a Jenkinsfile where I would like to compare two variables in expression. Say my target should have v1 and v2 the identical value, the step should be skipped, but both variables don't have the identical value, jenkins should cancel the job.
My stage for it looks like this at the moment. Unfortunately, jenkins overrides this step even if both variable ones have different values.
stage('Compare')
when
expression myVar = myVar2
steps
exit
jenkins groovy jenkins-pipeline
jenkins groovy jenkins-pipeline
asked Mar 22 at 10:07
MeltonMelton
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You made a mistake in your when
condition. The expression myVar = myVar2
is an assignment expression (you assign value of myVar2
to variable myVar
). If you want to test if two variables are equal, you need to use ==
operator.
stage('Compare')
when
expression myVar == myVar2
steps
exit
add a comment |
Your Answer
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%2f55297238%2fjenkinsfile-compare-variable%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
You made a mistake in your when
condition. The expression myVar = myVar2
is an assignment expression (you assign value of myVar2
to variable myVar
). If you want to test if two variables are equal, you need to use ==
operator.
stage('Compare')
when
expression myVar == myVar2
steps
exit
add a comment |
You made a mistake in your when
condition. The expression myVar = myVar2
is an assignment expression (you assign value of myVar2
to variable myVar
). If you want to test if two variables are equal, you need to use ==
operator.
stage('Compare')
when
expression myVar == myVar2
steps
exit
add a comment |
You made a mistake in your when
condition. The expression myVar = myVar2
is an assignment expression (you assign value of myVar2
to variable myVar
). If you want to test if two variables are equal, you need to use ==
operator.
stage('Compare')
when
expression myVar == myVar2
steps
exit
You made a mistake in your when
condition. The expression myVar = myVar2
is an assignment expression (you assign value of myVar2
to variable myVar
). If you want to test if two variables are equal, you need to use ==
operator.
stage('Compare')
when
expression myVar == myVar2
steps
exit
answered Mar 22 at 10:21
Szymon StepniakSzymon Stepniak
18.9k83566
18.9k83566
add a comment |
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%2f55297238%2fjenkinsfile-compare-variable%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