tools: add some logs to build_ci_images script
This commit is contained in:
parent
ecd2d7b8b6
commit
4ff69dea7c
1 changed files with 4 additions and 0 deletions
|
@ -4,15 +4,19 @@ set -e
|
|||
|
||||
IMAGE_DIR="$(git rev-parse --show-toplevel)/tools/ci/images"
|
||||
|
||||
echo "==> Building image: clang format"
|
||||
cd "$IMAGE_DIR/clang_format"
|
||||
docker build -t clang_format .
|
||||
|
||||
echo "==> Building image: static analysis"
|
||||
cd "$IMAGE_DIR/static_analysis"
|
||||
docker build -t static_analysis .
|
||||
|
||||
echo "==> Building image: unit tests"
|
||||
cd "$IMAGE_DIR/unit_tests"
|
||||
docker build -t unit_tests .
|
||||
|
||||
echo "==> Building image: valgrind"
|
||||
cd "$IMAGE_DIR/valgrind"
|
||||
docker build -t valgrind .
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue