Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kurtosis testing for nimbus eth1 and eth2 #2281

Merged
merged 14 commits into from
Jun 10, 2024
Merged
Prev Previous commit
fix: removed echo -e
  • Loading branch information
advaita-saha committed Jun 10, 2024
commit 9b5674e56325c29a4fa8cdf4e11368b41723f75a
6 changes: 3 additions & 3 deletions .github/workflows/kurtosis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
task_result="${RED}failure${NC}"
fi

echo -e " $(printf '%-4s' "$task_id")\t$task_status\t$task_result\t$(printf '%-50s' "$task_graph$task_name") \t$task_title"
printf " $(printf '%-4s' "$task_id")\t$task_status\t$task_result\t$(printf '%-50s' "$task_graph$task_name") \t$task_title \n"
done <<< $(echo "$tasks")
}

Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

for status_line in "${status_lines[@]}"
do
echo -e "$status_line"
printf "$status_line \n"
done

if ! [ -z "$running_test" ]; then
Expand All @@ -202,7 +202,7 @@ jobs:
echo "test_status<<EOF" >> $GITHUB_OUTPUT
for status_line in "${status_lines[@]}"
do
echo -e "$status_line" >> $GITHUB_OUTPUT
printf "$status_line \n" >> $GITHUB_OUTPUT
done
echo "EOF" >> $GITHUB_OUTPUT

Expand Down
Loading