Skip to content

Commit

Permalink
Fix Jenkins build.
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Jun 12, 2018
1 parent a92d2de commit ad16eee
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,17 @@ pipeline {
}
stage('Test') {
steps {
sh '/bin/bash ./build.sh Test -Skip -NoInit'
sh '/bin/bash ./build.sh Test -Skip'
}
post {
always {
step([$class: 'XUnitPublisher', testTimeMargin: '3000', thresholdMode: 1, thresholds: [[$class: 'FailedThreshold', failureThreshold: '0']], tools: [[$class: 'XUnitDotNetTestType', deleteOutputFiles: false, failIfNotNew: false, pattern: 'output/tests.xml', skipNoTestFiles: false, stopProcessingIfError: true]]])
}
}
}
stage('Publish') {
steps {
sh '/bin/bash ./build.sh Publish -Skip -NoInit'
}
}
stage('Pack') {
steps {
sh '/bin/bash ./build.sh Pack -Skip -NoInit'
sh '/bin/bash ./build.sh Pack -Skip'
}
}

Expand Down

0 comments on commit ad16eee

Please sign in to comment.