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
This commit is contained in:
Zephyron
2025-09-20 20:36:32 +10:00
parent 552cf4105c
commit a9afcf2515

View File

@@ -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