From a9afcf25156cb3e8e8740a1be8d3b80b4b0fc709 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sat, 20 Sep 2025 20:36:32 +1000 Subject: [PATCH] ci: Fix CMAKE_FLAGS quotes in YAML folded scalar - Remove quotes around CXX_FLAGS and C_FLAGS values in CMAKE_FLAGS variable - YAML folded scalar was not handling quoted strings correctly - This resolves the 'Unknown argument -mtune=core2' CMake error - The flags are now properly passed to cmake without quote issues --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d0d4298b8..027a197b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,8 +17,8 @@ variables: -DCITRON_TESTS=OFF -DCITRON_USE_LLVM_DEMANGLE=OFF -DCMAKE_INSTALL_PREFIX=/usr - -DCMAKE_CXX_FLAGS="-march=core2 -mtune=core2 -Wno-error" - -DCMAKE_C_FLAGS="-march=core2 -mtune=core2" + -DCMAKE_CXX_FLAGS=-march=core2 -mtune=core2 -Wno-error + -DCMAKE_C_FLAGS=-march=core2 -mtune=core2 -DUSE_DISCORD_PRESENCE=OFF -DBUNDLE_SPEEX=ON -DCMAKE_SYSTEM_PROCESSOR=x86_64