Enable verbose build and tests for ovni

This commit is contained in:
Rodrigo Arias Mallo 2023-10-04 13:40:02 +02:00
parent 873d2f1abc
commit 41a93cd176

View File

@ -41,6 +41,10 @@ in
buildInputs = [ cmake mpi ];
cmakeBuildType = if (enableDebug) then "Debug" else "Release";
cmakeFlags = [ "-DOVNI_GIT_COMMIT=${src.shortRev}" ];
buildFlags = [ "VERBOSE=1" ];
preCheck = ''
export CTEST_OUTPUT_ON_FAILURE=1
'';
dontStrip = true;
doCheck = true;
checkTarget = "test";