Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Jenkins 工作中,我想执行一个在构建期间从源仓库同步的 windows cmd,并且这个 cmd 也会调用从源仓库同步的其他 cmd。由于无法找到具有相对路径的其他 cmd,cmd 运行时出错。看起来根本原因是我无法在 Jenkins 作业配置中为初始 cmd 设置起始位置,在我的情况下这不是工作区根目录。有任何想法吗?
BR
首先尝试 cd 到适当的目录:
cd %WORKSPACE% && <your command>
这是Hudson Environment Variables,应该与 Jenkins 相同。