Skip to content

Commit 941b8ce

Browse files
Fix alias test (#886)
* Fix validation test to run on windows and linux * Revert "Fix validation test to run on windows and linux" This reverts commit e13a1b5.
1 parent fc19a46 commit 941b8ce

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Jenkinsfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)