ci: add unit tests check #4

Merged
light7734 merged 8 commits from ci/unit-tests into main 2025-07-16 09:55:16 +00:00
Showing only changes of commit 61c898f47f - Show all commits

View file

@ -51,8 +51,9 @@ steps:
pull: if-not-exists
commands:
- |
git submodule update --init --recursive
set -e
git submodule update --init --recursive
conan build . \
-c tools.system.package_manager:mode=install \
-s build_type=Release \
@ -60,13 +61,10 @@ steps:
-o enable_tests=True \
--build=missing
find ./build \
-type f \
-name '*_tests' \
-executable \
-exec sh -c \
'{}' \
\;
for test in $(find ./build -type f -name '*_tests' -executable); do
echo "Running $test"
"$test"
done
---
kind: pipeline