mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
13 lines
238 B
Bash
Executable File
13 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
nohup ganache-cli -s 0 &
|
|
nimble install -y
|
|
|
|
# Wait until ganache responds
|
|
while ! curl -X POST --data '{"jsonrpc":"2.0","method":"net_version","params":[],"id":67}' localhost:8545 2>/dev/null
|
|
do
|
|
true
|
|
done
|
|
nimble test
|