Permission denied error - jenkins (shell script)

13,320

Solution 1

I got it working with adding this to the GIT repo: git update-index --chmod=+x check_services.sh

Solution 2

My preference is to keep access permissions for individual files out of my git repo, favoring a method to handle this right inside the pipeline instead. Simply run the chmod ahead of the execution of the script, to give permissions to the workspace. Using declarative:

    stage('My Stage') {
        steps {
            sh "chmod +x -R ${env.WORKSPACE}"
            sh "./my-script.sh"
        }
    }

NOTE: For those who don't know this yet, the other requirement is to explicitly tell pipeline where the script is relative to the workspace. Just using sh "my-script.sh" won't work.

Share:
13,320
Admin
Author by

Admin

Updated on July 08, 2022

Comments

  • Admin
    Admin almost 2 years

    I'm using a jenkinsfile to test one of our instances. For this I created a bash script. Problem is that jenkins doesn't have permissions to run the script. Any idea how to fix this?

    Jenkinsfile:

     stage("Testing instances"){
        if (terragruntAction == 'apply' || terragruntAction == 'test'){
           echo "Testing"
           sh '../check_services.sh'
        }
     }
    

    output:

    ../check_services.sh: Permission denied

    I tried to do:

    git update-index --chmod=+x check_services.sh 
    

    on the git folder that gets checkouted by Jenkins but no luck.

    Any help, thanks in advance!