Compare commits

..

6 Commits

Author SHA1 Message Date
Denes Matetelki c785aff92b mentioning junit
jenkinsfiles_play/scripted_branch There was a failure building this commit Details
giteee/jenkinsfile_play/scripted_branch There was a failure building this commit Details
6 years ago
Denes Matetelki 973b337830 testing varnishtest
jenkinsfiles_play/scripted_branch There was a failure building this commit Details
6 years ago
Denes Matetelki 0e1026cf2e does the /' make a diff?
6 years ago
Denes Matetelki a0cf1c46b6 no numbers let jenkins figure it out
jenkinsfiles_play/scripted_branch There was a failure building this commit Details
6 years ago
Denes Matetelki 227539917a scripted junit
jenkinsfiles_play/scripted_branch There was a failure building this commit Details
6 years ago
Denes Matetelki e2f4794691 make it return 0
jenkinsfiles_play/scripted_branch This commit looks good Details
6 years ago

8
Jenkinsfile vendored

@ -18,7 +18,7 @@ node('master') {
try { try {
stage('Test') { stage('Test') {
sh 'echo "Fail!"; exit 1' sh 'echo "Fail!"; exit 0'
} }
echo 'This will run only if successful' echo 'This will run only if successful'
} catch (e) { } catch (e) {
@ -40,6 +40,12 @@ 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