light/tools/ci/steps/static_analysis.sh

15 lines
299 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2025-07-20 07:58:41 +03:30
cd $(git rev-parse --show-toplevel)/
rm -rf ./build
conan build . \
-c tools.system.package_manager:mode=install \
-c tools.cmake.cmaketoolchain:generator=Ninja \
-s build_type=Release \
-o enable_static_analysis=True \
-o enable_tests=True \
-o use_mold=True \
--build=missing