Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuler committed Aug 5, 2024
1 parent 4f18019 commit 9ab8857
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ def runShellCommand(script, int retries = 1) {
def buildImage(appName, appVersion, String type='CE') {
// Type EE, CE, MID, EE-MID
echo "Building ${appName}:${appVersion}"
echo "Type: ${type}"

def appBuildOption = [
"core-xpack": [
Expand Down Expand Up @@ -253,6 +252,11 @@ pipeline {
}
}
stage('Restart') {
when {
expression {
return ALL_APPS.contains(env.repo)
}
}
steps {
script {
sh '''
Expand Down

0 comments on commit 9ab8857

Please sign in to comment.