-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgtm.yml
More file actions
19 lines (19 loc) · 958 Bytes
/
lgtm.yml
File metadata and controls
19 lines (19 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
extraction:
cpp:
prepare: # Customizable step used by all languages.
packages:
- python-pip
- ca-certificates
after_prepare: # Customizable step used by all languages.
- DEPS_DIR="$HOME/deps"
- mkdir ${DEPS_DIR} && cd ${DEPS_DIR}
- CMAKE_URL="https://cmake.org/files/v3.15/cmake-3.15.7-Linux-x86_64.tar.gz"
- mkdir cmake && wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
- export PATH=${DEPS_DIR}/cmake/bin:${PATH}
- pip3 install --user conan
- export PATH=~/.local/bin:${PATH}
- conan profile new default --detect
- conan profile update settings.compiler.version=8 default
- conan profile update settings.compiler.libcxx=libstdc++11 default
- conan remote update conan-center https://conan.bintray.com False
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan False