- 下载插件
NodeJS Plugin(nodejs环境)
Publish over SSH (用于执行构建后的操作)
Gitee Plugin(由于我用的是gitee管理代码,所以需要安装)
2 。a. 新建项目名称
b. 配置源码管理(Git仓库)
c.配置购置触发器
d.配置构建环境 (node 及npm)
e.配置构建(写shell脚本)
source /etc/profile : 加载环境变量。让jenkins可以执行对应的npm命令。
node -v
npm install:安装依赖,这里也可以使用yarn安装。
rm -rf ./dist/*:#删除打包后的dist文件下的所有文件。
npm run build:#执行项目打包命令
cp -rf dist/ /web/web-ui:复制到指定的nginx映射的目录
参考文献: https://www.cnblogs.com/libo0125ok/p/17415662.html
https://blog.csdn.net/qq_45374325/article/details/130183049