问题描述
这是我收到的错误消息
./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"
}
推荐答案
如果您想使用命令 sh
和 bat
指定 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 上没有这样的文件或目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!