Skip to content

Commit 8160977

Browse files
authored
ci: add injectived, and neutornd binary (#858)
* ci: add injectived, and neutornd binary * ci: update archwayd to v6.0.0 * ci: update archwayd to v6.0.0
1 parent 545da5c commit 8160977

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

.github/deployer/init_script.sh

+20-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ KMS_ID="KMS_ID_HERE"
1111
DEPLOYR_HOME="/home/deployr"
1212
GO_VERS="1.20.6"
1313
JAVA_VERS="11.0.18_10"
14-
ARCHWAY_VERS="0.4.0"
14+
ARCHWAY_VERS="6.0.0"
15+
INJECTIVE_VERS="1.12.1-1705909076"
16+
NEUTRON_VERS="3.0.2"
1517

1618
set -x
1719
export GOROOT=/usr/local/go
@@ -54,7 +56,7 @@ export TMOUT
5456
PROMPT_COMMAND='history -a >(logger -t "[$USER] $SSH_CONNECTION")'
5557
EOF
5658

57-
apt-get install auditd audispd-plugins -y
59+
apt-get install auditd audispd-plugins unzip -y
5860
systemctl enable auditd
5961
systemctl start auditd
6062

@@ -103,8 +105,22 @@ tar xf OpenJDK11U-jdk_x64_linux_hotspot_$${JAVA_VERS}.tar.gz -C /opt/java
103105
go install github.com/icon-project/goloop/cmd/goloop@latest
104106

105107
# Install archway
106-
wget -q https://github.com/archway-network/archway/releases/download/v$${ARCHWAY_VERS}/archway_$${ARCHWAY_VERS}_linux_amd64.tar.gz
107-
tar xf archway_$${ARCHWAY_VERS}_linux_amd64.tar.gz -C /usr/local/bin
108+
wget -q https://github.com/archway-network/archway/releases/download/v$${ARCHWAY_VERS}/archway_$${ARCHWAY_VERS}_linux_amd64.zip
109+
unzip archway_$${ARCHWAY_VERS}_linux_amd64.zip
110+
sudo archwayd /usr/local/bin
111+
112+
# Install injectived
113+
wget -q https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v$${INJECTIVE_VERS}/linux-amd64.zip
114+
unzip linux-amd64.zip
115+
sudo cp injectived peggo /usr/bin
116+
sudo cp libwasmvm.x86_64.so /usr/lib
117+
sudo chmod +x /usr/bin/injectived
118+
sudo chmod +x /usr/bin/peggo
119+
120+
# Install neutron
121+
wget -q https://github.com/neutron-org/neutron/releases/download/v$${NEUTRON_VERS}/neutrond-linux-amd64
122+
sudo cp neutrond-linux-amd64 /usr/local/bin/neutrond
123+
sudo chmod +x /usr/local/bin/neutrond
108124

109125
# Install boto3, yq, and jq
110126
apt-get install python3-pip -y

0 commit comments

Comments
 (0)