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

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

问题描述

这是我收到的错误消息

./gradlew clean assembleRelease/Users/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"

否则完整路径也可以.

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

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