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!
I got it working with adding this to the GIT repo: git update-index --chmod=+x check_services.sh
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With