diff --git a/Jenkinsfile b/Jenkinsfile index 2659b73..802db83 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ steps { echo 'Linting..' sh 'make tidy || true' - junit 'build/*.xml' + junit allowEmptyResults: true, healthScaleFactor: 0.0, testResults: 'build/tidy.xml' } } stage('Test') { @@ -33,7 +33,7 @@ steps { echo 'Testing..' sh 'make test || true' - junit 'build/*.xml' + junit allowEmptyResults: true, healthScaleFactor: 0.0, testResults: 'build/tests.xml' } } stage('Deploy') {