Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Varache committed Oct 1, 2018
1 parent a870eb7 commit 2ddb63c
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ pipeline {
agent {
label 'ubuntu_18.04'
}
post {
always {
node('ubuntu_18.04') {
junit allowEmptyResults: true, testResults: 'test-results.xml'
}
}
regression {
notify_culprits currentBuild.result
}
}
stages {
stage('checkout') {
steps {
Expand Down Expand Up @@ -52,12 +62,4 @@ pipeline {
}
}
}
post {
always {
junit allowEmptyResults: true, testResults: 'test-results.xml'
}
regression {
notify_culprits currentBuild.result
}
}
}

0 comments on commit 2ddb63c

Please sign in to comment.