gitlab+jenkins多项目,多依赖,继承等上下级项目关系的自动部署
Posted linyouyi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitlab+jenkins多项目,多依赖,继承等上下级项目关系的自动部署相关的知识,希望对你有一定的参考价值。
案例:
现有三个项目,Common,entity,serviceAPI
entity依赖于Common,serviceAPI依赖于entity,也就是说common的下级项目是entity,而entity的下级项目是serviceAPI
common<--entity<--serviceAPI
实施:
1)common在jenkins项目中的配置
其他构建设置不做多描述,此处打勾
2)entity在jenkins的配置
3)serviceAPI在jenkins的配置
3)common在gitlab项目中的配置
4)entity在gitlab项目中的配置
4)serviceAPI在gitlab项目中的配置
5)以上步骤整完,jenkins就可以收到gitlab的推送,然后自动进行构建。
common推送会触发common、entity、serviceAPI三个一起构建;
entity推送则会触发entity、serviceAPI一起构建;
serviceAPI推送只会触发serviceAPI构建;
以上是关于gitlab+jenkins多项目,多依赖,继承等上下级项目关系的自动部署的主要内容,如果未能解决你的问题,请参考以下文章
三十二张图告诉你,Jenkins构建SpringBoot有多简单~
gitlab+jenkins+maven+docker持续集成——参数化构建过程之多环境tag构建