2020-04-20 20:18:40 +02:00
|
|
|
#! /bin/bash -eu
|
|
|
|
|
2022-02-01 01:42:24 +01:00
|
|
|
cmake -B build -DCMAKE_BUILD_TYPE=Debug \
|
2020-04-20 20:18:40 +02:00
|
|
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
|
|
|
|
-DRUN_IN_PLACE=TRUE \
|
2023-12-23 14:20:24 +01:00
|
|
|
-DENABLE_GETTEXT=FALSE \
|
2022-02-01 01:42:24 +01:00
|
|
|
-DBUILD_SERVER=TRUE
|
|
|
|
cmake --build build --target GenerateVersion
|
2020-04-20 20:18:40 +02:00
|
|
|
|
|
|
|
./util/ci/run-clang-tidy.py \
|
2023-12-23 14:20:24 +01:00
|
|
|
-clang-tidy-binary=$CLANG_TIDY -p build \
|
2020-04-20 20:18:40 +02:00
|
|
|
-quiet -config="$(cat .clang-tidy)" \
|
|
|
|
'src/.*'
|