Jenkins发布失败记录

Exception when publishing, exception message [Exec exit status not zero. Status [127]]

见链接:Jenkins发布时常见异常(持续更新...)_exception when publishing, exception message [exec_码农StayUp的博客-CSDN博客

The remote end hung up unexpectedly

Jenkins发布失败记录_第1张图片

目标仓库太大,尝试增加git的缓存大小。

git config --global http.postBuffer 1048576000
ERROR: "type-check" exited with 2.   (vite-vue3)

Jenkins发布失败记录_第2张图片

代码类型检查未通过,即上方显示的错误们。

此时build指令为  "build": "run-p type-check build-only",

运行指令 "build-only": "vite build", 或者改成 "build": "vite build"

SyntaxError: Unexpected token '??='       (vite-vue3)

Jenkins发布失败记录_第3张图片

??=  2020新增操作符,可能不兼容,升级一下node版本

你可能感兴趣的:(jenkins,java,运维)