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 {
78
78
stage (' Alias Test' ) {
79
79
// only run this stage when triggered by a cron timer and the commit does not have []skip-ci in the message
80
80
// for example, only run integration tests during the timer triggered nightly build
81
+
81
82
when {
82
83
allOf {
83
84
triggeredBy ' TimerTrigger'
@@ -105,15 +106,16 @@ pipeline {
105
106
steps {
106
107
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'
107
108
}
108
- post {
109
- always {
110
- archiveArtifacts artifacts : ' report*' , fingerprint : true
111
- }
112
- }
113
109
}
114
110
}
111
+
115
112
}
116
113
// after all sets are complete, the job will continue here.
114
+ post {
115
+ always {
116
+ archiveArtifacts artifacts : ' report*' , fingerprint : true
117
+ }
118
+ }
117
119
}
118
120
stage (' Save Nightly Installer' ){
119
121
when {
You can’t perform that action at this time.
0 commit comments