mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
9 lines
171 B
Bash
9 lines
171 B
Bash
#!/bin/bash
|
|
|
|
cd ../build
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -DCOLLECT_COVERAGE_DATA=ON -DCOVERAGE_TOOL=gcovr .. && \
|
|
make -j$(nproc) Gradido_LoginServer_Test
|
|
make coverage
|
|
|
|
|