Prevent Codecov from breaking the build

This commit is contained in:
Paul Campbell 2018-02-23 19:25:45 +00:00
parent 7d9f3aebae
commit c6e19005ff

2
Jenkinsfile vendored
View file

@ -16,7 +16,7 @@ pipeline {
}
stage('Publish Coverage') {
steps {
sh 'curl -s https://codecov.io/bash | bash -s'
sh 'curl -s https://codecov.io/bash | bash -s || echo "Codecov did not collect coverage reports"'
sh './mvnw test jacoco:report coveralls:report'
}
}