WIP: Use shell to run make test on Jenkins

This commit is contained in:
Lipu Fei 2018-07-06 11:21:54 +02:00
parent 1483571fda
commit c7b7521a30

3
Jenkinsfile vendored
View file

@ -33,7 +33,8 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
// Try and run the unit tests. If this stage fails, we consider the build to be "unstable".
stage('Unit Test') {
try {
make('test')
//make('test')
sh "CTEST_OUTPUT_ON_FAILURE=1 make test"
} catch(e) {
currentBuild.result = "UNSTABLE"
}