Skip to content

Commit ca90b4c

Browse files
authored
Merge pull request #2861 from IntersectMBO/scripts_imp
Scripts improvements
2 parents 9170abc + 6861c18 commit ca90b4c

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.github/regression.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,6 @@ if [ -n "${GITHUB_ACTIONS:-""}" ]; then
245245

246246
# compress scheduling log
247247
xz "$SCHEDULING_LOG"
248-
249-
echo
250-
echo "Dir content:"
251-
ls -1a
252248
fi
253249

254250
exit "$retval"

cardano_node_tests/cluster_scripts/conway/start-cluster

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -725,10 +725,10 @@ for _ in {1..5}; do
725725
if [ -S "$CARDANO_NODE_SOCKET_PATH" ]; then
726726
break
727727
fi
728-
echo "Waiting 5 seconds for bft node to start"
728+
echo "Waiting 5 seconds for the nodes to start"
729729
sleep 5
730730
done
731-
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the bft node, line $LINENO" >&2; exit 1; } # assert
731+
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the nodes, line $LINENO" >&2; exit 1; } # assert
732732

733733
echo "Sleeping for initial Tx submission delay of $TX_SUBMISSION_DELAY seconds"
734734
sleep "$TX_SUBMISSION_DELAY"

cardano_node_tests/cluster_scripts/conway_fast/start-cluster

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,10 +608,10 @@ for _ in {1..5}; do
608608
if [ -S "$CARDANO_NODE_SOCKET_PATH" ]; then
609609
break
610610
fi
611-
echo "Waiting 5 seconds for bft node to start"
611+
echo "Waiting 5 seconds for the nodes to start"
612612
sleep 5
613613
done
614-
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the bft node, line $LINENO" >&2; exit 1; } # assert
614+
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the nodes, line $LINENO" >&2; exit 1; } # assert
615615

616616

617617
#

cardano_node_tests/cluster_scripts/mainnet_fast/start-cluster

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,10 +608,10 @@ for _ in {1..5}; do
608608
if [ -S "$CARDANO_NODE_SOCKET_PATH" ]; then
609609
break
610610
fi
611-
echo "Waiting 5 seconds for bft node to start"
611+
echo "Waiting 5 seconds for the nodes to start"
612612
sleep 5
613613
done
614-
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the bft node, line $LINENO" >&2; exit 1; } # assert
614+
[ -S "$CARDANO_NODE_SOCKET_PATH" ] || { echo "Failed to start the nodes, line $LINENO" >&2; exit 1; } # assert
615615

616616

617617
#

0 commit comments

Comments
 (0)