File tree Expand file tree Collapse file tree 4 files changed +19
-31
lines changed
web/packages/test/scripts Expand file tree Collapse file tree 4 files changed +19
-31
lines changed Original file line number Diff line number Diff line change 36
36
tree
37
37
# ps for zombienet, required in pure shells on Linux
38
38
ps
39
+ # convenience for developing relayer
40
+ killall
39
41
40
- # typescript
42
+ typescript
41
43
python311
42
44
nodePackages . pnpm
43
45
nodejs_22
53
55
go
54
56
gotools
55
57
gopls
58
+ go-ethereum
56
59
go-outline
57
60
gopkgs
58
61
godef
69
72
# NOTE: when upgrading rustup, check for a command to install the version in the toolchain file:
70
73
# https://github.com/rust-lang/rustup/issues/2686
71
74
rustup
75
+ # convenience for clearing unused build outputs
76
+ cargo-sweep
72
77
73
78
cowsay
79
+
80
+ # smoketest
81
+ openssl . dev
82
+ pkg-config
74
83
] ;
75
84
76
85
shellHook = ''
Original file line number Diff line number Diff line change @@ -6,31 +6,13 @@ source scripts/set-env.sh
6
6
start_geth () {
7
7
pushd " $root_dir /.."
8
8
9
- GETH_PATH=" go-ethereum/build/bin/geth"
10
-
11
- # Install Electra geth binary
12
- if [ ! -f " $GETH_PATH " ]; then
13
- echo " Local geth binary not found at $GETH_PATH ."
14
- echo " Cloning and building go-ethereum..."
15
-
16
- git clone https://github.com/ethereum/go-ethereum/ go-ethereum
17
- pushd go-ethereum
18
- git checkout $GETH_VERSION
19
- make geth
20
- popd
21
- else
22
- echo " Local geth binary already exists at $GETH_PATH . Skipping clone and build."
23
- fi
24
-
25
- pushd go-ethereum
26
-
27
9
echo " Starting geth local node"
28
- ./build/bin/ geth version
29
- ./build/bin/ geth \
10
+ geth version
11
+ geth \
30
12
--datadir " $output_dir /ethereum" \
31
13
--state.scheme=hash \
32
14
init " $config_dir /genesis.json"
33
- ./build/bin/ geth \
15
+ geth \
34
16
--networkid 11155111 \
35
17
--vmdebug \
36
18
--datadir " $output_dir /ethereum" \
@@ -57,8 +39,6 @@ start_geth() {
57
39
--state.scheme=hash \
58
40
> " $output_dir /geth.log" 2>&1 &
59
41
60
- popd
61
-
62
42
popd
63
43
}
64
44
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ zombienet_data_dir="$output_dir/zombienet"
14
14
export PATH=" $output_bin_dir :$PATH "
15
15
polkadot_sdk_dir=" ${POLKADOT_SDK_DIR:- ../ polkadot-sdk} "
16
16
17
- export GETH_VERSION=v1.15.11
18
17
export LODESTAR_VERSION=v1.31.0
19
18
export snowbridge_v1=" ${BUILD_V1:- false} "
20
19
v1_root_dir=" $root_dir /../snowbridge-v1"
You can’t perform that action at this time.
0 commit comments