jenkins打包报错Build step 'Execute shell' marked build as failure Finished: FAILURE
1、jenkins打包报错
处理方式
1、在步骤“Execute shell”命令最上面添加(还是报错)
#!/bin/bash
2、设置全局配置,添加键和值(还是报错)
键:LANG
值:zh.CH.UTF-8
3、
设置全局配置,添加键和值(还是报错)
键:JAVA_TOOL_OPTIONS
值:-Dfile.encoding=UTF-8
4、cat /usr/lib/systemd/system/jenkins.service 添加一行
Environment="JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8"
重启jenkins