We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6168b1 commit 4027340Copy full SHA for 4027340
Jenkinsfile
@@ -78,6 +78,18 @@ pipeline {
78
sh 'mvn -B -DskipITs=false -Dmw_home=${ORACLE_HOME} -Ddb.use.container.network=true install'
79
}
80
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
93
stage ('Alias Test') {
94
// only run this stage when triggered by a cron timer and the commit does not have []skip-ci in the message
95
// for example, only run integration tests during the timer triggered nightly build
0 commit comments