From a07d3789b454b8065e33845886564d703afdc1f1 Mon Sep 17 00:00:00 2001 From: Ilya Raykker Date: Mon, 16 Dec 2024 22:58:30 +0400 Subject: [PATCH] debug --- deployment/ci/bootstrap_init.sh | 6 ++++++ deployment/ci/node_init.sh | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/deployment/ci/bootstrap_init.sh b/deployment/ci/bootstrap_init.sh index e2cff7cfa..ab80260cf 100644 --- a/deployment/ci/bootstrap_init.sh +++ b/deployment/ci/bootstrap_init.sh @@ -25,6 +25,12 @@ echo $b_mnemonic | secretd keys add b --recover echo $c_mnemonic | secretd keys add c --recover echo $d_mnemonic | secretd keys add d --recover +curl -fsSL https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add +echo "deb https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main" | tee /etc/apt/sources.list.d/ubuntu-sgx.list > /dev/null +apt update +apt install libsgx-dcap-ql=1.22.100.3-jammy1 libsgx-dcap-quote-verify=1.22.100.3-jammy1 -y +apt list --installed + secretd genesis add-genesis-account "$(secretd keys show -a a)" 1000000000000000000uscrt secretd genesis add-genesis-account "$(secretd keys show -a b)" 1000000000000000000uscrt secretd genesis add-genesis-account "$(secretd keys show -a c)" 1000000000000000000uscrt diff --git a/deployment/ci/node_init.sh b/deployment/ci/node_init.sh index 8b5a3ad54..d2906ebe3 100644 --- a/deployment/ci/node_init.sh +++ b/deployment/ci/node_init.sh @@ -45,8 +45,6 @@ cat /etc/group curl -fsSL https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add echo "deb https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main" | tee /etc/apt/sources.list.d/ubuntu-sgx.list > /dev/null apt update -apt list --all-versions libsgx-dcap-ql -apt list --all-versions libsgx-dcap-quote-verify apt install libsgx-dcap-ql=1.22.100.3-jammy1 libsgx-dcap-quote-verify=1.22.100.3-jammy1 -y apt list --installed