jenkins自动化部署
Posted 码出未来_远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jenkins自动化部署相关的知识,希望对你有一定的参考价值。
jenkins自动化部署
jenkins自动化部署配置项目添加凭据生成自动拉取程序的代码
配置项目
添加凭据
生成自动拉取程序的代码
```pipeline {
agent any
stages { //阶段
stage('pull') { //步骤
steps { 命令
git credentialsId: '5fbfd820-8d6c-40d2-8452-a52a7f536d3e', url: 'https://gitee.com/linuxyyds/tomcat-java-demo.git'
}
}
stage('build') {
steps {
sh 'mvn clean package'
}
}
stage('deploy') {
steps {
sh 'mv target/ly-simple-tomcat-0.0.1-SNAPSHOT.war test.war'
sh 'mv test.war /usr/local/tomcat/webapps/'
sh '/usr/local/tomcat/bin/catalina.sh stop'
sh '/usr/local/tomcat/bin/catalina.sh start'
}
}
}
}
以上是关于jenkins自动化部署的主要内容,如果未能解决你的问题,请参考以下文章
自动代码质量分析(GitLab+JenKins+SonarQube)