File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ pipeline {
7878 stage (' Alias Test' ) {
7979 // only run this stage when triggered by a cron timer and the commit does not have []skip-ci in the message
8080 // for example, only run integration tests during the timer triggered nightly build
81+
8182 when {
8283 allOf {
8384 triggeredBy ' TimerTrigger'
@@ -105,15 +106,16 @@ pipeline {
105106 steps {
106107 sh ' /u01/verify/alias-test/src/test/resources/runIntegrationTest.sh -wls_version ${WLS_VERSION} -testfiles_path /u01/verify/testfiles;cp /u01/verify/testfiles/report* $WORKSPACE'
107108 }
108- post {
109- always {
110- archiveArtifacts artifacts : ' report*' , fingerprint : true
111- }
112- }
113109 }
114110 }
111+
115112 }
116113 // after all sets are complete, the job will continue here.
114+ post {
115+ always {
116+ archiveArtifacts artifacts : ' report*' , fingerprint : true
117+ }
118+ }
117119 }
118120 stage (' Save Nightly Installer' ){
119121 when {
You can’t perform that action at this time.
0 commit comments