-
Notifications
You must be signed in to change notification settings - Fork 37
/
.lgtm.yml
38 lines (34 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright (c) 2020-2023 by the Zeek Project. See LICENSE for details.
path_classifiers:
library:
- "3rdparty"
extraction:
cpp:
prepare:
packages:
- git
- ninja-build
- bison
- flex
- bison
- llvm-12-dev
- clang-12
- libclang-12-dev
- libc++1
- libc++abi1
- libc++abi-dev
- curl
after_prepare:
- mkdir $HOME/cmake && curl -L https://github.com/Kitware/CMake/releases/download/v3.19.2/cmake-3.19.2-Linux-x86_64.tar.gz | tar xzvf - -C $HOME/cmake --strip-components 1
- export PATH=$HOME/cmake/bin:$PATH
- export CXX=clang++-12
- export CC=clang-12
- export ASM=clang-12
- git fetch --tags
configure:
command:
- cmake --version
- ./configure --generator=Ninja --enable-debug
index:
build_command:
- ninja -C build