script.sh: line 1: ./gradlew: No such file or directory on Jenkins(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"
}
推荐答案
如果您想使用命令 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 上没有这样的文件或目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:script.sh:第 1 行:./gradlew:Jenkins 上没有这样的文件或目录


- 网上有没有好的 UIScrollView 教程? 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- UITextView 内容插图 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- URL编码Swift iOS 2022-01-01