From f794e10723b3648cf3702aa43cf8296f0c03ef8d Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 23 Apr 2021 08:00:49 +0200 Subject: [PATCH] Jenkins/check-unity-log.sh: check also for 'Player build result: Failed!' * instead of detecting failed build just because of missing output binary --- Jenkins/check-unity-log.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkins/check-unity-log.sh b/Jenkins/check-unity-log.sh index 1d00fa07c..7f3c05a64 100755 --- a/Jenkins/check-unity-log.sh +++ b/Jenkins/check-unity-log.sh @@ -11,7 +11,7 @@ fi grep --extended-regexp \ --ignore-case \ --before-context=100 --after-context=100 \ - 'threw exception|Fatal Error|Caught fatal signal|Scripts have compiler errors' \ + 'threw exception|Fatal Error|Caught fatal signal|Scripts have compiler errors|^Player build result: Failed!' \ $LOG_FILE RESULT=$?