From 6b5e364873401b42d75dbe3cba59f4787ebeaae0 Mon Sep 17 00:00:00 2001 From: xxchan Date: Tue, 20 Aug 2024 22:57:24 +0800 Subject: [PATCH] ci: fix log size limit failure by increasing limit (#18117) Signed-off-by: xxchan --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 2fe13db1ca8cc..554d2df8d3f3c 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -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