-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathlgtm.yml
More file actions
20 lines (20 loc) · 773 Bytes
/
lgtm.yml
File metadata and controls
20 lines (20 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extraction:
cpp:
configure: # Customizable step used only by C/C++ extraction.
command:
- export DEPS_BUILD_DIR=$LGTM_WORKSPACE/deps
- mkdir -p $DEPS_BUILD_DIR
- git clone https://github.com/emp-toolkit/emp-tool.git
- cd emp-tool
- cmake -DENABLE_FLOAT=True -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR .
- make -j4
- make install
- git clone https://github.com/emp-toolkit/emp-ot.git
- cd emp-ot
- cmake -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR .
- make -j4
- make install
index: # Customizable step used by all languages.
build_command:
- export DEPS_BUILD_DIR=$LGTM_WORKSPACE/deps
- cmake -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR . && make