Skip to content

Commit

Permalink
perf: change jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuler committed Jul 30, 2024
1 parent 5a59fdc commit 4339cab
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,21 @@ pipeline {
checkoutToSubdirectory('installer')
}
environment {
CE_APPS = "jumpserver,koko,lina,luna,lion,chen,docker-web"
EE_APPS = "core-xpack,magnus,panda,razor,xrdp,video-worker"
}
stages {
stage('Preparation') {
steps {
script {
env.branch = params.branch
env.release_version = params.release_version ?: env.branch
env.build_args = params.build_args
}
}
}
stage('Checkout') {
steps {
script {
def apps = env.build_ee ? EE_APPS : CE_APPS
def apps = EE_APPS

apps.each { app ->
dir(app) {
Expand Down

0 comments on commit 4339cab

Please sign in to comment.