From 09058a3ecfb054b08e351a789a3140101451ed0d Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Fri, 18 Aug 2017 17:32:32 +0900 Subject: [PATCH] Fix timeout to 60mins Change-Id: I5cc90c2ea9631276b65d673664582e0255123a6a --- Tools/dotnet-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/dotnet-build.sh b/Tools/dotnet-build.sh index bd18dab8..2b32b29e 100755 --- a/Tools/dotnet-build.sh +++ b/Tools/dotnet-build.sh @@ -48,7 +48,7 @@ run_xbuild() { run_dotnet() { echo "+ dotnet $@" - timeout 600 dotnet $@ + timeout 3600 dotnet $@ exit_on_error $? } -- 2.34.1