Skip to content

Commit

Permalink
Merge pull request IntersectMBO#2861 from IntersectMBO/scripts_imp
Browse files Browse the repository at this point in the history
Scripts improvements
  • Loading branch information
mkoura authored Dec 27, 2024
2 parents 9170abc + 6861c18 commit ca90b4c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .github/regression.sh
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,6 @@ if [ -n "${GITHUB_ACTIONS:-""}" ]; then

# compress scheduling log
xz "$SCHEDULING_LOG"

echo
echo "Dir content:"
ls -1a
fi

exit "$retval"
4 changes: 2 additions & 2 deletions cardano_node_tests/cluster_scripts/conway/start-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -725,10 +725,10 @@ for _ in {1..5}; do
if [ -S "$CARDANO_NODE_SOCKET_PATH" ]; then
break
fi
echo "Waiting 5 seconds for bft node to start"
echo "Waiting 5 seconds for the nodes to start"
sleep 5
done
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the bft node, line $LINENO" >&2; exit 1; } # assert
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the nodes, line $LINENO" >&2; exit 1; } # assert

echo "Sleeping for initial Tx submission delay of $TX_SUBMISSION_DELAY seconds"
sleep "$TX_SUBMISSION_DELAY"
Expand Down
4 changes: 2 additions & 2 deletions cardano_node_tests/cluster_scripts/conway_fast/start-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -608,10 +608,10 @@ for _ in {1..5}; do
if [ -S "$CARDANO_NODE_SOCKET_PATH" ]; then
break
fi
echo "Waiting 5 seconds for bft node to start"
echo "Waiting 5 seconds for the nodes to start"
sleep 5
done
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the bft node, line $LINENO" >&2; exit 1; } # assert
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the nodes, line $LINENO" >&2; exit 1; } # assert


#
Expand Down
4 changes: 2 additions & 2 deletions cardano_node_tests/cluster_scripts/mainnet_fast/start-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -608,10 +608,10 @@ for _ in {1..5}; do
if [ -S "$CARDANO_NODE_SOCKET_PATH" ]; then
break
fi
echo "Waiting 5 seconds for bft node to start"
echo "Waiting 5 seconds for the nodes to start"
sleep 5
done
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the bft node, line $LINENO" >&2; exit 1; } # assert
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the nodes, line $LINENO" >&2; exit 1; } # assert


#
Expand Down

0 comments on commit ca90b4c

Please sign in to comment.