Skip to content

Commit

Permalink
Added header to JenkinsFile with Plugins needed to run it.
Browse files Browse the repository at this point in the history
  • Loading branch information
b1quint committed May 28, 2019
1 parent 6b21359 commit af2192f
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
#!/usr/bin/env groovy
/*
* Jenkins Pipeline for DRAGONS
*
* by Bruno C. Quint
*
* Required Plug-ins:
* - CloudBees File Leak Detector
* - Cobertura Plug-in
* - Warnings NG
*/

pipeline {

agent any
Expand Down Expand Up @@ -125,7 +136,7 @@ pipeline {
'''
}
post {
always {
success {
echo ' --- Report coverage usinig Cobertura --- '
step([$class: 'CoberturaPublisher',
autoUpdateHealth: false,
Expand All @@ -149,8 +160,5 @@ pipeline {
always {
sh 'conda remove --name ${BUILD_TAG} --all --quiet --yes'
}
failure {
echo "Send e-mail, when failed"
}
}
}

0 comments on commit af2192f

Please sign in to comment.