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;








-1















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











share|improve this question




























    -1















    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











    share|improve this question
























      -1












      -1








      -1








      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











      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 10:07









      MeltonMelton

      1




      1






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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







          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            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









            1














            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







            share|improve this answer



























              1














              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







              share|improve this answer

























                1












                1








                1







                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







                share|improve this answer













                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








                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 22 at 10:21









                Szymon StepniakSzymon Stepniak

                18.9k83566




                18.9k83566





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript