Jenkins Shared Libraries: is it possible to pass arguments to shell scripts imported as 'libraryResource'?












1















I have the following setup:



(Stripped out) Jenkinsfile:



@Library('my-custom-library') _

pipeline {
agent any
stages {
stage('Example') {
steps {
printHello name: 'Jenkins'
}
}
}
}


my-custom-library/resources/com/org/scripts/print-hello.sh:



#!/bin/bash

echo "Hello, $1"


my-custom-library/vars/printHello.groovy:



def call(Map parameters = [:]) {
def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
def name = parameters.name
//the following line gives me headaches
sh(printHelloScript(name))
}


I expect Hello, Jenkins, but it throws the following exception:




groovy.lang.MissingMethodException: No signature of method:
java.lang.String.call() is applicable for argument types:
(java.lang.String) values: [Jenkins]



Possible solutions: wait(), any(), wait(long),
split(java.lang.String), take(int), each(groovy.lang.Closure)




So, is it possible to do something like described above, without mixing Groovy and Bash code?










share|improve this question





























    1















    I have the following setup:



    (Stripped out) Jenkinsfile:



    @Library('my-custom-library') _

    pipeline {
    agent any
    stages {
    stage('Example') {
    steps {
    printHello name: 'Jenkins'
    }
    }
    }
    }


    my-custom-library/resources/com/org/scripts/print-hello.sh:



    #!/bin/bash

    echo "Hello, $1"


    my-custom-library/vars/printHello.groovy:



    def call(Map parameters = [:]) {
    def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
    def name = parameters.name
    //the following line gives me headaches
    sh(printHelloScript(name))
    }


    I expect Hello, Jenkins, but it throws the following exception:




    groovy.lang.MissingMethodException: No signature of method:
    java.lang.String.call() is applicable for argument types:
    (java.lang.String) values: [Jenkins]



    Possible solutions: wait(), any(), wait(long),
    split(java.lang.String), take(int), each(groovy.lang.Closure)




    So, is it possible to do something like described above, without mixing Groovy and Bash code?










    share|improve this question



























      1












      1








      1


      1






      I have the following setup:



      (Stripped out) Jenkinsfile:



      @Library('my-custom-library') _

      pipeline {
      agent any
      stages {
      stage('Example') {
      steps {
      printHello name: 'Jenkins'
      }
      }
      }
      }


      my-custom-library/resources/com/org/scripts/print-hello.sh:



      #!/bin/bash

      echo "Hello, $1"


      my-custom-library/vars/printHello.groovy:



      def call(Map parameters = [:]) {
      def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
      def name = parameters.name
      //the following line gives me headaches
      sh(printHelloScript(name))
      }


      I expect Hello, Jenkins, but it throws the following exception:




      groovy.lang.MissingMethodException: No signature of method:
      java.lang.String.call() is applicable for argument types:
      (java.lang.String) values: [Jenkins]



      Possible solutions: wait(), any(), wait(long),
      split(java.lang.String), take(int), each(groovy.lang.Closure)




      So, is it possible to do something like described above, without mixing Groovy and Bash code?










      share|improve this question
















      I have the following setup:



      (Stripped out) Jenkinsfile:



      @Library('my-custom-library') _

      pipeline {
      agent any
      stages {
      stage('Example') {
      steps {
      printHello name: 'Jenkins'
      }
      }
      }
      }


      my-custom-library/resources/com/org/scripts/print-hello.sh:



      #!/bin/bash

      echo "Hello, $1"


      my-custom-library/vars/printHello.groovy:



      def call(Map parameters = [:]) {
      def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
      def name = parameters.name
      //the following line gives me headaches
      sh(printHelloScript(name))
      }


      I expect Hello, Jenkins, but it throws the following exception:




      groovy.lang.MissingMethodException: No signature of method:
      java.lang.String.call() is applicable for argument types:
      (java.lang.String) values: [Jenkins]



      Possible solutions: wait(), any(), wait(long),
      split(java.lang.String), take(int), each(groovy.lang.Closure)




      So, is it possible to do something like described above, without mixing Groovy and Bash code?







      shell jenkins jenkins-pipeline jenkins-groovy






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 14 '18 at 13:27







      ebu_sho

















      asked Nov 14 '18 at 11:20









      ebu_shoebu_sho

      149110




      149110
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Yes, check out withEnv



          The example they give looks like;



          node {
          withEnv(['MYTOOL_HOME=/usr/local/mytool']) {
          sh '$MYTOOL_HOME/bin/start'
          }
          }


          More applicable to you:



          // resources/test.sh
          echo "HI here we are - $PUPPY_DOH --"

          // vars/test.groovy
          def call() {
          withEnv(['PUPPY_DOH=bobby']) {
          sh(libraryResource('test.sh'))
          }
          }


          Prints:



          [Pipeline] {
          [Pipeline] withEnv
          [Pipeline] {
          [Pipeline] libraryResource
          [Pipeline] sh
          + echo HI here we are - bobby --
          HI here we are - bobby --
          [Pipeline] }
          [Pipeline] // withEnv
          [Pipeline] }


          Using that, you can pass it in using a scoped named variable, something like



          def call(Map parameters = [:]) {
          def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
          def name = parameters.name
          withEnv(['NAME=' + name]) { // This may not be 100% syntax here ;)
          sh(printHelloScript)
          }

          // print-hello.sh
          echo "Hello, $name"





          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%2f53299028%2fjenkins-shared-libraries-is-it-possible-to-pass-arguments-to-shell-scripts-impo%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









            0














            Yes, check out withEnv



            The example they give looks like;



            node {
            withEnv(['MYTOOL_HOME=/usr/local/mytool']) {
            sh '$MYTOOL_HOME/bin/start'
            }
            }


            More applicable to you:



            // resources/test.sh
            echo "HI here we are - $PUPPY_DOH --"

            // vars/test.groovy
            def call() {
            withEnv(['PUPPY_DOH=bobby']) {
            sh(libraryResource('test.sh'))
            }
            }


            Prints:



            [Pipeline] {
            [Pipeline] withEnv
            [Pipeline] {
            [Pipeline] libraryResource
            [Pipeline] sh
            + echo HI here we are - bobby --
            HI here we are - bobby --
            [Pipeline] }
            [Pipeline] // withEnv
            [Pipeline] }


            Using that, you can pass it in using a scoped named variable, something like



            def call(Map parameters = [:]) {
            def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
            def name = parameters.name
            withEnv(['NAME=' + name]) { // This may not be 100% syntax here ;)
            sh(printHelloScript)
            }

            // print-hello.sh
            echo "Hello, $name"





            share|improve this answer




























              0














              Yes, check out withEnv



              The example they give looks like;



              node {
              withEnv(['MYTOOL_HOME=/usr/local/mytool']) {
              sh '$MYTOOL_HOME/bin/start'
              }
              }


              More applicable to you:



              // resources/test.sh
              echo "HI here we are - $PUPPY_DOH --"

              // vars/test.groovy
              def call() {
              withEnv(['PUPPY_DOH=bobby']) {
              sh(libraryResource('test.sh'))
              }
              }


              Prints:



              [Pipeline] {
              [Pipeline] withEnv
              [Pipeline] {
              [Pipeline] libraryResource
              [Pipeline] sh
              + echo HI here we are - bobby --
              HI here we are - bobby --
              [Pipeline] }
              [Pipeline] // withEnv
              [Pipeline] }


              Using that, you can pass it in using a scoped named variable, something like



              def call(Map parameters = [:]) {
              def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
              def name = parameters.name
              withEnv(['NAME=' + name]) { // This may not be 100% syntax here ;)
              sh(printHelloScript)
              }

              // print-hello.sh
              echo "Hello, $name"





              share|improve this answer


























                0












                0








                0







                Yes, check out withEnv



                The example they give looks like;



                node {
                withEnv(['MYTOOL_HOME=/usr/local/mytool']) {
                sh '$MYTOOL_HOME/bin/start'
                }
                }


                More applicable to you:



                // resources/test.sh
                echo "HI here we are - $PUPPY_DOH --"

                // vars/test.groovy
                def call() {
                withEnv(['PUPPY_DOH=bobby']) {
                sh(libraryResource('test.sh'))
                }
                }


                Prints:



                [Pipeline] {
                [Pipeline] withEnv
                [Pipeline] {
                [Pipeline] libraryResource
                [Pipeline] sh
                + echo HI here we are - bobby --
                HI here we are - bobby --
                [Pipeline] }
                [Pipeline] // withEnv
                [Pipeline] }


                Using that, you can pass it in using a scoped named variable, something like



                def call(Map parameters = [:]) {
                def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
                def name = parameters.name
                withEnv(['NAME=' + name]) { // This may not be 100% syntax here ;)
                sh(printHelloScript)
                }

                // print-hello.sh
                echo "Hello, $name"





                share|improve this answer













                Yes, check out withEnv



                The example they give looks like;



                node {
                withEnv(['MYTOOL_HOME=/usr/local/mytool']) {
                sh '$MYTOOL_HOME/bin/start'
                }
                }


                More applicable to you:



                // resources/test.sh
                echo "HI here we are - $PUPPY_DOH --"

                // vars/test.groovy
                def call() {
                withEnv(['PUPPY_DOH=bobby']) {
                sh(libraryResource('test.sh'))
                }
                }


                Prints:



                [Pipeline] {
                [Pipeline] withEnv
                [Pipeline] {
                [Pipeline] libraryResource
                [Pipeline] sh
                + echo HI here we are - bobby --
                HI here we are - bobby --
                [Pipeline] }
                [Pipeline] // withEnv
                [Pipeline] }


                Using that, you can pass it in using a scoped named variable, something like



                def call(Map parameters = [:]) {
                def printHelloScript = libraryResource 'com/org/scripts/print-hello.sh'
                def name = parameters.name
                withEnv(['NAME=' + name]) { // This may not be 100% syntax here ;)
                sh(printHelloScript)
                }

                // print-hello.sh
                echo "Hello, $name"






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 28 at 3:15









                chrisbchrisb

                1188




                1188






























                    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%2f53299028%2fjenkins-shared-libraries-is-it-possible-to-pass-arguments-to-shell-scripts-impo%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

                    Xamarin.iOS Cant Deploy on Iphone

                    Glorious Revolution

                    Dulmage-Mendelsohn matrix decomposition in Python