Skip to content

Commit 4027340

Browse files
committed
re-adding wkt-sync job call
1 parent a6168b1 commit 4027340

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+
not { triggeredBy 'TimerTrigger' }
86+
tag 'release-*'
87+
}
88+
}
89+
steps {
90+
build job: "wkt-sync", parameters: [ string(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)