Compare commits

..

No commits in common. 'scripted_branch' and 'master' have entirely different histories.

8
Jenkinsfile vendored

@ -18,7 +18,7 @@ node('master') {
try { try {
stage('Test') { stage('Test') {
sh 'echo "Fail!"; exit 0' sh 'echo "Fail!"; exit 1'
} }
echo 'This will run only if successful' echo 'This will run only if successful'
} catch (e) { } catch (e) {
@ -40,12 +40,6 @@ node('master') {
} }
echo 'This will always run' echo 'This will always run'
junit 'testresults.xml'
} }
stage('archiving test results') {
sh "touch testresults.xml"
junit 'testresults.xml'
}
} }

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save