1 Star 0 Fork 0

Liangwl/spring-cloud-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Jenkinsfile 816 Bytes
一键复制 编辑 原始数据 按行查看 历史
Liangwl 提交于 2021-11-11 09:08 . update Jenkinsfile.
pipeline {
agent any
//触发器,定时执行流水线
triggers {
pollSCM('*/1 * * * *')
}
tools {
maven 'apache-maven-3.6.0'
}
stages {
stage('_test构建') {
steps {
echo '开始构建_test'
sh 'mvn --version'
}
}
stage('tag构建'){
steps {
echo '开始构建tags'
}
}
// stage('Example') {
// input {
// message "Should we continue?"
// ok "Yes, we should."
// submitter "alice,bob"
// parameters {
// string(name: 'PERSON', defaultValue: 'Mr Jenkins', description: 'Who should I say hello to?')
// }
// }
// steps {
// echo "Hello, ${PERSON}, nice to meet you."
// }
// }
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DreamCodeY/spring-cloud-config.git
git@gitee.com:DreamCodeY/spring-cloud-config.git
DreamCodeY
spring-cloud-config
spring-cloud-config
master

搜索帮助