diff --git a/install-applications.sh b/install-applications.sh new file mode 100755 index 0000000..688f112 --- /dev/null +++ b/install-applications.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +set -e + +# Install KEEP-CORE. +./install-keep-core.sh + +# Install KEEP-ECDSA. +./install-keep-ecdsa.sh + +# Install tBTC. +./install-tbtc.sh + +# Install tBTC dApp. +./install-tbtc-dapp.sh + +# Do not install keep dashboard dApp for e2e nightly test +if [[ $E2E_TEST != true ]] +then + # Install Keep Dashboard. + ./install-keep-dashboard.sh +fi diff --git a/install.sh b/install.sh index 8dc8c1d..415b181 100755 --- a/install.sh +++ b/install.sh @@ -5,23 +5,7 @@ set -e # Install submodules. ./install-repositories.sh -# Install KEEP-CORE. -./install-keep-core.sh +# Install applications and their contracts +./install-applications.sh -# Install KEEP-ECDSA. -./install-keep-ecdsa.sh - -# Install tBTC. -./install-tbtc.sh - -# Install tBTC dApp. -./install-tbtc-dapp.sh - -# Do not install keep dashboard dApp for e2e nightly test -if [[ $E2E_TEST != true ]] -then - # Install Keep Dashboard. - ./install-keep-dashboard.sh -fi - -echo "Installation script executed successfully with versions of submodules:\n$(git submodule)" \ No newline at end of file +echo "Installation script executed successfully with versions of submodules:\n$(git submodule)"