-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from ObolNetwork/stipe/parallel_cluster_runs
parallel execution added + fix for lodestar/nimbus BNs
- Loading branch information
Showing
139 changed files
with
88 additions
and
110,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
PORTS=("14000" "24000" "34000" "14003" "24003" "34003" "14004" "24004" "34004") | ||
|
||
for PORT in "${PORTS[@]}"; do | ||
PID=$(sudo lsof -ti :$PORT) | ||
if [ ! -z "$PID" ]; then | ||
echo "Killing process $PID on port $PORT" | ||
sudo kill -9 $PID | ||
else | ||
echo "No process found on port $PORT" | ||
fi | ||
done |
1 change: 0 additions & 1 deletion
1
kurtosis-geth-lighthouse/.charon/cluster/node0/charon-enr-private-key
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.