Set enable tests to zero for performance build

This commit is contained in:
alesapin 2020-09-17 13:39:13 +03:00 committed by Alexey Milovidov
parent 8a8e4f8a41
commit 1f429b3d52

View File

@ -105,6 +105,7 @@ def parse_env_variables(build_type, compiler, sanitizer, package_type, image_typ
# Create combined output archive for split build and for performance tests.
if package_type == "performance":
result.append("COMBINED_OUTPUT=performance")
cmake_flags.append("-DENABLE_TESTS=0")
elif split_binary:
result.append("COMBINED_OUTPUT=shared_build")