本文介绍了权限被拒绝错误-詹金斯(shell脚本)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jenkinsfile测试我们的一个实例.为此,我创建了一个bash脚本.问题是jenkins没有运行脚本的权限.知道如何解决这个问题吗?

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:

Jenkinsfile:

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

输出:

我试图做:

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

Jenkins结帐但没有运气的git文件夹上.

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

任何帮助,谢谢!

推荐答案

我可以将其添加到GIT存储库中:git update-index --chmod = + x check_services.sh

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

这篇关于权限被拒绝错误-詹金斯(shell脚本)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 22:10