Skip to content

Commit

Permalink
ci: fix log size limit failure by increasing limit (#18117)
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan authored and xxchan committed Aug 20, 2024
1 parent 91d9a7a commit 80663d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ do
fi
done
if (( "$(du -sk ${PREFIX_LOG} | cut -f1)" > 3000 )) ; then
if (( "$(du -sk ${PREFIX_LOG} | cut -f1)" > 4000 )) ; then
echo "$(tput setaf 1)ERROR: log size is significantly large ($(du -sh ${PREFIX_LOG} | cut -f1)).$(tput sgr0) Please disable unnecessary logs."
exit 1
fi
Expand Down

0 comments on commit 80663d2

Please sign in to comment.