gpt4 book ai didi

git - 声明式 Jenkins 管道,每晚部署主分支

转载 作者:太空狗 更新时间:2023-10-29 13:12:36 27 4
gpt4 key购买 nike

我想将一些工作转换为新的 Jenkins 2.0 声明式管道。目前他们是 3 个不同的工作:

  1. CI --> 每 5 分钟轮询一次 SCM(仅 master),构建并运行测试。
  2. 每晚 --> 每晚运行(在每晚服务器上构建、测试、集成测试和部署)
  3. Sprintly --> 这是一个参数化作业,每周四使用手动创建的标签运行。 (在 sprintly 服务器上构建、测试、集成测试和部署)

为此,我在 Spring 用 maven 做了一个小项目,这将是我开始的最佳示例(构建起来简单、容易和快速)。

目前我已经有一个用于 CI 构建的多分支管道,但我想将每晚和 Sprintly 构建集成到这项工作中。

  • 每晚:在晚上在要部署的 master 分支上运行 Cron 作业在夜间服务器中。
  • Sprintly:基于我在 master 分支中生成的 Sprintly_tag 构建,以部署在 Sprintly Server 中。

目前我有这个 JenkinsFile

pipeline {
agent {
label 'master'
}
tools {
maven "Apache Maven 3.3.9"
jdk "Java JDK 1.8 U102"
}
triggers {
cron ('H(06-08) 01 * * *')
pollSCM('H/5 * * * *')
}
stages {
stage('Build') {
steps {
sh 'mvn -f de.foo.project.client/ clean package'
}
post {
always {
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
archiveArtifacts allowEmptyArchive: true, artifacts: '**/target/*.war'
}
}
}
stage('Deploy') {
sh 'echo "Deploy only master"'
}
}

当有东西被 pull 到 Git 时,它会运行每个分支,并且还会在晚上 1 点左右运行(但仍在运行所有分支)。

有什么想法或提示吗?不需要执行部署的代码我只想知道如何过滤/拆分位于同一个 JenkinsFile 中的这个分支

非常感谢大家!

编辑:我也可以使用,但它会在晚上运行所有分支(我可以只为 Cron 作业制作这个过滤器吗?)

        stage('DeployBranch') {
when { branch 'story/RTS-525-task/RTS-962'}
steps {
sh 'echo "helloDeploy in the branch"'
}
}
stage('DeployMaster') {
when { branch 'master'}
steps {
sh 'echo "helloDeploy in the master"'
}
}

最佳答案

四个月后阅读我自己的问题后,我意识到我尝试设置触发器和作业的方式完全错误。我们应该有 3 个不同的工作:

  1. 将在每个分支中运行 maven 构建的多分支管道(可以配置为每 n 分钟轮询一次 scm 或由存储库中的 webhook 启动。
  2. 将配置为在夜间触发的管道(称为夜间)(在作业配置中,而不是在管道中)并将部署到夜间系统并仅使用主分支(也在 Jenkins 作业中配置)<
  3. 管道(称为 sprintly)但参数化为使用特定标签运行并仅使用主分支

管道应保持简单,如:

pipeline {
agent {
label 'master'
}
tools {
maven "Apache Maven 3.3.9"
jdk "Java JDK 1.8 U102"
}
stages {
stage('Build') {
steps {
sh 'mvn -f de.foo.project.client/ clean package'
}
post {
always {
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
archiveArtifacts allowEmptyArchive: true, artifacts: '**/target/*.war'
}
}
}
stage('Deploy') {
when (env.JOB_NAME.endsWith('nightly')
sh 'echo "Deploy on nighlty"'
when (env.JOB_NAME.endsWith('sprintly')
sh 'echo "Deploy only sprintly"'
}
}

如果您有任何问题,请告诉我,我很乐意提供帮助:)

关于git - 声明式 Jenkins 管道,每晚部署主分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45502500/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com