1 Star 0 Fork 0

南星/wallet-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
bootstrap.sh 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
# Fail if any commands fails
set -e
echo "#### Initializing... ####"
tools/install-dependencies
echo "#### Generating files... ####"
tools/generate-files
echo "#### Building... ####"
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug
make -Cbuild -j12 tests TrezorCryptoTests
if [ -x "$(command -v clang-tidy)" ]; then
echo "#### Linting... ####"
tools/lint
fi
echo "#### Testing... ####"
export CK_TIMEOUT_MULTIPLIER=4
build/trezor-crypto/crypto/tests/TrezorCryptoTests
ROOT="`dirname \"$0\"`"
TESTS_ROOT="`(cd \"$ROOT/tests\" && pwd)`"
build/tests/tests "$TESTS_ROOT"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hologo/wallet-core.git
[email protected]:hologo/wallet-core.git
hologo
wallet-core
wallet-core
master

搜索帮助