Skip to content

Commit

Permalink
perf: chagne build
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuler committed Jul 31, 2024
1 parent 25ab4a7 commit 228ff6f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,12 @@ pipeline {
}
}
}
stage('Build Middle apps') {
stage('Build pre apps') {
steps {
script {
def ceStages = MID_APPS.collectEntries{ app ->
["Build ${app}": {
stage("Build Mid ${app}") {
stage("Build ${app}") {
dir(app) {
script {
def type = "MID"
Expand All @@ -209,10 +209,10 @@ pipeline {
stage("Build ${app}") {
dir(app) {
script {
buildImage(app, env.release_version, "CE")
if (app in EE_APPS) {
buildImage(app, env.release_version, "EE")
if (app in CE_APPS) {
buildImage(app, env.release_version, "CE")
}
buildImage(app, env.release_version, "EE")
}
}
}
Expand Down

0 comments on commit 228ff6f

Please sign in to comment.