Jenkins--node版本过低问题解决
Jenkins构建项目是控制台报错内容error commander@8.2.0: The engine "node" is incompatible with this module. Expected version ">= 12". Got "10.15.3"error Found incompatible module.Build step 'Execute shell' marke
·
Jenkins构建项目是控制台报错内容
error commander@8.2.0: The engine "node" is incompatible with this module. Expected version ">= 12". Got "10.15.3"
error Found incompatible module.
Build step 'Execute shell' marked build as failure
SSH: Current build result is [FAILURE], not going to run.
Finished: FAILURE
显示node版本过低,导致其他依赖包不兼容
解决方案一(Jenkins升级node版本)
1.下载jenkins-linux 安装包
配带: 阿里云node下载地址
2.上传安装包到linux服务器并解压
3.修改解压后的node文件夹的node所属用户以及所属用户组
命令如下
这里的用户可以在使用命令 cat /etc/passwd 中可以看到所用的用户
# 更改文件所属的用户和用户组
chown -R jenkins:jenkins node-v14.17.3-linux-x64
# 为文件夹添加权限
chmod 775 node-v14.17.3-linux-x64
4.在jenkins中的 Manage Jenkins >> Global Tool Configuration >> nodeJs安装 >> 新增node 别名以及安装目录
5.任务构建即可
这里选择一下自己的新增的版本
如果没有修改文件所属用户和用户组的话,jenkins会没有权限
这是我第一次上传的
报错截图
修改后
方案二(Jenkins配置忽略版本)
命令为
yarn config set ignore-engines true
更多推荐
已为社区贡献1条内容
所有评论(0)