Skip to content
Snippets Groups Projects
Commit 2fd7180e authored by Administrator's avatar Administrator
Browse files

Fix Experimental build

The experimental build mode should not remove the build directory neither
update the local working copy. Unfortunately this features were brocken because
of typos in a comparisson where lower case and upper case modes were mixed.
parent 024b7bb9
No related branches found
No related tags found
1 merge request!2002Fix Experimental build
Pipeline #32575 passed
......@@ -58,7 +58,7 @@ Else()
EndIf()
#If(${CBM_TEST_MODEL} MATCHES Nightly OR ${CBM_TEST_MODEL} MATCHES Weekly OR ${CBM_TEST_MODEL} MATCHES Profile)
If(NOT ${_BuildType} MATCHES Experimental)
If(NOT ${_BuildType} MATCHES EXPERIMENTAL)
Find_Program(GCOV_COMMAND gcov)
If(GCOV_COMMAND)
......@@ -89,7 +89,7 @@ If(DEFINED ENV{CTEST_END_TIME_LIMIT})
message(STATUS " End time for the ctest test runs set to ${stop_time}")
EndIf()
If(NOT ${_BuildType} MATCHES Experimental)
If(NOT ${_BuildType} MATCHES EXPERIMENTAL)
Ctest_Update(SOURCE "${CTEST_SOURCE_DIRECTORY}")
EndIf()
......
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