-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.lgtm.yml
24 lines (24 loc) · 927 Bytes
/
.lgtm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
# for full syntax documentation see: https://lgtm.com/help/lgtm/lgtm.yml-configuration-file
path_classifiers:
test:
- '*/tests/*.cpp'
extraction:
cpp:
prepare:
packages:
- qt5-default
- libqt5charts5-dev
script:
- mkdir ~/.conan
- cat /usr/local/share/ca-certificates/semmle-cache-ca/semmle-cache-ca.crt >> ~/.conan/cacert.pem
- python3 -m pip install --upgrade pip setuptools
- python3 -m pip install conan
- python3 -m pip install cmake
- source ~/.profile
configure:
command:
- mkdir build
- cmake -DQt5Charts_DIR=/usr/lib/x86_64-linux-gnu/cmake/Qt5Charts/Qt5ChartsConfig.cmake -DENABLE_COVERAGE:BOOL=TRUE -S . -B build
index:
build_command: cmake --build ./build -- -j2