light/tools/scripts/build_ci_images.sh

28 lines
622 B
Bash
Raw Permalink Normal View History

2025-07-17 12:13:11 +03:30
#!/bin/bash
set -e
IMAGE_DIR="$(git rev-parse --show-toplevel)/tools/ci/images"
echo "==> Building image: clang format"
2025-07-17 12:13:11 +03:30
cd "$IMAGE_DIR/clang_format"
docker build -t clang_format .
echo "==> Building image: static analysis"
2025-07-17 12:13:11 +03:30
cd "$IMAGE_DIR/static_analysis"
docker build -t static_analysis .
echo "==> Building image: unit tests"
2025-07-17 12:13:11 +03:30
cd "$IMAGE_DIR/unit_tests"
docker build -t unit_tests .
echo "==> Building image: valgrind"
2025-07-17 12:13:11 +03:30
cd "$IMAGE_DIR/valgrind"
docker build -t valgrind .
2025-07-20 07:58:41 +03:30
echo "==> Building image: leak_sanitizer"
cd "$IMAGE_DIR/leak_sanitizer"
docker build -t leak_sanitizer .
2025-07-17 12:13:11 +03:30
echo "WOOOOOOOOOOOOOOOOH!!! DONE :D"