Skip to content

Commit 88c0199

Browse files
authored
Merge pull request #14713 from Patater/lgtm
lgtm: Add initial LGTM configuration file
2 parents 0bbc3e2 + c867a3d commit 88c0199

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.lgtm.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
path_classifiers:
2+
docs:
3+
- docs
4+
test:
5+
- "**/TESTS"
6+
- "**/UNITTESTS"
7+
tools:
8+
- tools
9+
10+
extraction:
11+
cpp:
12+
prepare:
13+
packages:
14+
- ninja-build
15+
- python-pip
16+
after_prepare:
17+
- pip install --user cmake
18+
- ls ~/.local/bin
19+
- export PATH=~/.local/bin:$PATH
20+
- cmake --version
21+
configure:
22+
command:
23+
- cmake -S . -B __build -GNinja -DBUILD_TESTING=ON -DCOVERAGE=OFF -DCMAKE_BUILD_TYPE=Debug
24+
index:
25+
build_command:
26+
- cmake --build __build
27+
- cmake --build __build --target test

0 commit comments

Comments
 (0)