Files
emp-ag2pc/lgtm.yml
2021-07-20 01:02:06 -05:00

21 lines
773 B
YAML

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