Browse Source

Verbose output for Windows CI

Lipu Fei 6 years ago
parent
commit
84bad92f10
1 changed files with 6 additions and 1 deletions
  1. 6 1
      Jenkinsfile

+ 6 - 1
Jenkinsfile

@@ -72,7 +72,12 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
                     }
                     else {
                         // For Windows
-                        make('test')
+                        try {
+                            // This also does code style checks.
+                            bat 'ctest -V'
+                        } catch(e) {
+                            currentBuild.result = "UNSTABLE"
+                        }
                     }
                 }