Skip to content

Commit 38d353c

Browse files
committed
Merge branch 'sync-job' into 'main'
Sync job See merge request weblogic-cloud/weblogic-deploy-tooling!1451
2 parents ed44e1b + db89274 commit 38d353c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Jenkinsfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ pipeline {
7878
sh 'mvn -B -DskipITs=false -Dmw_home=${ORACLE_HOME} -Ddb.use.container.network=true install'
7979
}
8080
}
81+
stage ('Sync') {
82+
when {
83+
branch 'main'
84+
anyOf {
85+
triggeredBy 'SCMTrigger'
86+
tag 'release-*'
87+
}
88+
}
89+
steps {
90+
build job: "wkt-sync", parameters: [ choice(name: 'REPOSITORY', value: 'weblogic-deploy-tooling') ]
91+
}
92+
}
8193
stage ('Alias Test') {
8294
// only run this stage when triggered by a cron timer and the commit does not have []skip-ci in the message
8395
// for example, only run integration tests during the timer triggered nightly build

0 commit comments

Comments
 (0)