
jenkins
rookiesx
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
error unable to access jarfile 解决方案
在jenkins shell 排查一个错误时,花了很久。表象是因为 执行shell 脚本 中的 java -jar xxx.jar 没有成功启动jar 程序。因为使用了 nohup & 来后台启动jar 包,所以jenkins 没有打印出错误 日志。在去除 nohup & 之后,发现是报了error unable to access jarfile 错误导致的。解决方案:发现是 调用shell脚本 时访问不到该jar,通过修改jar 绝对路径解决了/home/user原创 2022-03-27 00:37:09 · 57932 阅读 · 0 评论 -
python 应用jenkins 环境变量 或者 parameter variable
1.import os2.os.getenv("xxx")3.example: os.getenv("BUILD_NUMBER")+"_"+os.getenv("region")原创 2022-03-24 16:33:48 · 2739 阅读 · 0 评论