搜索结果
查询Tags标签: jenkinsfile,共有 4条记录-
Jenkins 的参数化构建
Jenkins 的参数化构建 目录Jenkins UI页面配置参数化构建IDEA 修改Jenkinsfile,并开启分支修改Jenkinsfile文件idea 开启新分支切换分支的方法修改两个分支代码,提交文件先后构建项目查看结果 Jenkins UI页面配置参数化构建 有时在项目构建的过程中,我们需要根据用户的…
2022/2/15 6:13:58 人评论 次浏览 -
jenkinsfile
pipeline { agent any options { timestamps() //日志会有时间 skipDefaultCheckout() // 删除隐式checkout scm语句 disableConcurrentBuilds() // 禁止并行 timeout(time: 1, unit: HOURS) // 超时时间 } stages { st…
2021/12/7 6:22:42 人评论 次浏览 -
jenkinsfile
pipeline { agent any options { timestamps() //日志会有时间 skipDefaultCheckout() // 删除隐式checkout scm语句 disableConcurrentBuilds() // 禁止并行 timeout(time: 1, unit: HOURS) // 超时时间 } stages { st…
2021/12/7 6:22:42 人评论 次浏览 -
python的web项目jenkinsfile
pipeline { agent any stages {stage(MakeDatabasefile) {steps {sh touch ./app/static/wordfreqapp.db && rm -f ./app/static/wordfreqapp.db sh cat ./app/static/wordfreqapp.sql | sqlite3 ./app/static/wordfreqapp.db} }stage(BuildIt) {steps {echo Buil…
2021/6/8 1:33:11 人评论 次浏览