jenkins pipeline 部署

  一、git 版本控制结合jenkins 发布

sh-4.2$ git branch

sh-4.2$ git chekout master

sh-4.2$ git tag v1.1

sh-4.2$ git push origin v1.1

 

二、jenkins生成git 链接

 

 

 

 

checkout([$class: 'GitSCM', branches: [[name: '$Tag']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'c11cfcf5-0021-4666-94c7-f972f55ac050', url: 'git@192.168.1.197:root/test.git']]])

 

 

实例:

 1 pipeline {
 2     agent any
 3     stages {
 4         stage('Checkout') {
 5             steps {
 6                 echo 'Checkout'
 7                 checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'c11cfcf5-0021-4666-94c7-f972f55ac050', url: 'git@192.168.1.197:root/test.git']]])
 8             }
 9         }        
10         stage('Build') {
11             steps {
12                 echo 'Building'
13                 sh 'mvn clean install'
14             }
15         }
16         stage('Test') {
17             steps {
18                 echo 'Testing'
19                 sh 'mvn clean verify sonar:sonar' 
20             }
21         }
22         stage('Deploy') {
23             steps {
24                 echo 'Deploying'
25                 sh 'mvn clean deploy' 
26             }
27         }
28     }
29 }

 

转载于:https://www.cnblogs.com/zoulixiang/p/9673447.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值