script.sh:第1行:./gradlew:Jenkins上没有这样的文件或目录 [英] script.sh: line 1: ./gradlew: No such file or directory on Jenkins

查看:611
本文介绍了script.sh:第1行:./gradlew:Jenkins上没有这样的文件或目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我收到的错误消息

./gradlew clean assembleRelease /用户/bhanukaisuru/.jenkins/workspace/OrelGo@tmp/durable-b74adbad/script.sh: 第1行:./gradlew:没有此类文件或目录管道脚本

./gradlew clean assembleRelease /Users/bhanukaisuru/.jenkins/workspace/OrelGo@tmp/durable-b74adbad/script.sh: line 1: ./gradlew: No such file or directoryPipeline Script

管道脚本

stage('Build Release APK') {
             sh "./gradlew clean assembleRelease"
         }

推荐答案

如果要在根目录执行命令,则无需使用命令shbat指定Jenkins工作区.

You do not need to specify the Jenkins workspace with the commands sh and bat if you want to execute a command on the root level of it.

sh 'mkdir test'会在<jenkins_workspace>/test中创建一个文件夹.

sh 'mkdir test' would create a folder in <jenkins_workspace>/test for example.

如果gradlew位于Jenkins工作区的根目录,则应满足以下条件:

If gradlew is located on the root of the Jenkins workspace the following should be sufficent:

sh "gradlew clean assembleRelease"

否则,完整路径也将起作用.

otherwise a full path works as well.

这篇关于script.sh:第1行:./gradlew:Jenkins上没有这样的文件或目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆