ci(static_analysis/clang_tidy): replace conan commands with cmake
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
light7734 2025-09-21 14:06:27 +03:30
parent 6d301ec510
commit 3800c62827
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -9,12 +9,12 @@ echo 'Runng this would be a waste of CPU cycles and electricty'
echo 'Fix the checks before removing these lines' echo 'Fix the checks before removing these lines'
exit 0 exit 0
conan build . \ cmake .. \
-c tools.system.package_manager:mode=install \ -G Ninja \
-c tools.cmake.cmaketoolchain:generator=Ninja \ -DCMAKE_LINKER_TYPE=MOLD \
-s build_type=Release \ -DENABLE_UNIT_TESTS=ON \
-o enable_static_analysis=True \ -DENABLE_FUZZ_TESTS=ON \
-o enable_unit_tests=True \ -CMAKE_CXX_CLANG_TIDY=ON \
-o enable_fuzz_tests=True \ -DCMAKE_BUILD_TYPE=Release \
-o use_mold=True \ -DCMAKE_CXX_FLAGS="-std=c++23 -stdlib=libc++ -g -fno-omit-frame-pointer" \
--build=missing && cmake --build . -j `nproc`