From ae49549f0328b1af65ef3850808d76faaa9fa450 Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Tue, 23 Jun 2020 12:19:38 +0200 Subject: [PATCH] change build type to debug for ci/cd it should set -O0 which should prioritise fast compilation for gcc --- CI/before_script.linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CI/before_script.linux.sh b/CI/before_script.linux.sh index ad325e2bad..f4aaeecc9d 100755 --- a/CI/before_script.linux.sh +++ b/CI/before_script.linux.sh @@ -17,7 +17,7 @@ ${ANALYZE} cmake \ -DUSE_SYSTEM_TINYXML=TRUE \ -DCMAKE_INSTALL_PREFIX="/usr" \ -DBINDIR="/usr/games" \ - -DCMAKE_BUILD_TYPE="RelWithDebInfo" \ + -DCMAKE_BUILD_TYPE="DEBUG" \ -DGTEST_ROOT="${GOOGLETEST_DIR}" \ -DGMOCK_ROOT="${GOOGLETEST_DIR}" \ ..