mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
16 lines
592 B
YAML
16 lines
592 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
|
|
index: # Customizable step used by all languages.
|
|
build_command:
|
|
- export DEPS_BUILD_DIR=$LGTM_WORKSPACE/deps
|
|
- cmake -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR . && make
|