Skip to content
Snippets Groups Projects
Commit 264c4890 authored by Martin Killenberg's avatar Martin Killenberg
Browse files

Introuduced environment variable SKIP_TESTS

- If tests are skipped, the build result will be unstable.
parent a0ddd58e
No related branches found
No related tags found
No related merge requests found
......@@ -276,6 +276,10 @@ EOF
/**********************************************************************************************************************/
def doTest(String label, String buildType) {
if (env.SKIP_TESTS) {
currentBuild.result = 'UNSTABLE'
return
}
// Run the tests via ctest
// Prefix test names with label and buildType, so we can distinguish them later
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment