light/tools/ci/steps/amd64/gcc/unit-tests.sh
light7734 9909f5c430
Some checks reported errors
continuous-integration/drone/pr Build was killed
ci: refactors
2025-07-20 07:58:41 +03:30

18 lines
385 B
Bash
Executable file

#!/bin/bash
set -e
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_tests=True \
-o use_mold=True \
--build=missing
for test in $(find ./build -type f -name '*_tests' -executable); do
echo "Running $test"
"$test"
done