Jenkins使用NodeJs打包前端

时间:2024-05-19 11:02:14

1、系统管理-》插件管理-》
查找nodejs插件安装
Jenkins使用NodeJs打包前端
2、系统管理-》全局工具配置
Jenkins使用NodeJs打包前端

3、系统管理-》系统设置
Jenkins使用NodeJs打包前端

4、点击新建任务创建一个
Jenkins使用NodeJs打包前端

5、填写gitlab地址和用户密码
Jenkins使用NodeJs打包前端

6、勾选Provide Node & npm bin/ folder to PATH

Jenkins使用NodeJs打包前端

7、执行构建脚本
Jenkins使用NodeJs打包前端

8、将打包内容上传到nginx
Jenkins使用NodeJs打包前端

9、配置nginx
location / {
try_files $uri $uri/ @router;
index index.html;
# root html;
root /aifs01/tools/nginx/html/;
}
Jenkins使用NodeJs打包前端

10、然后输入ip:port/index.html即可访问页面
Jenkins使用NodeJs打包前端