Compare commits

..

2 commits

Author SHA1 Message Date
d453982acf
ci: update static_analysis dockerfile
Some checks failed
continuous-integration/drone/push Build is failing
2025-07-17 12:21:38 +03:30
4ff69dea7c
tools: add some logs to build_ci_images script 2025-07-17 12:17:59 +03:30
2 changed files with 5 additions and 0 deletions

View file

@ -27,6 +27,7 @@ RUN clang --version \
&& g++ --version \ && g++ --version \
&& clang --version \ && clang --version \
&& clang-tidy --version \ && clang-tidy --version \
&& which ninja \
&& ninja --version \ && ninja --version \
&& mold --version && mold --version

View file

@ -4,15 +4,19 @@ set -e
IMAGE_DIR="$(git rev-parse --show-toplevel)/tools/ci/images" IMAGE_DIR="$(git rev-parse --show-toplevel)/tools/ci/images"
echo "==> Building image: clang format"
cd "$IMAGE_DIR/clang_format" cd "$IMAGE_DIR/clang_format"
docker build -t clang_format . docker build -t clang_format .
echo "==> Building image: static analysis"
cd "$IMAGE_DIR/static_analysis" cd "$IMAGE_DIR/static_analysis"
docker build -t static_analysis . docker build -t static_analysis .
echo "==> Building image: unit tests"
cd "$IMAGE_DIR/unit_tests" cd "$IMAGE_DIR/unit_tests"
docker build -t unit_tests . docker build -t unit_tests .
echo "==> Building image: valgrind"
cd "$IMAGE_DIR/valgrind" cd "$IMAGE_DIR/valgrind"
docker build -t valgrind . docker build -t valgrind .