From 44315b1f752790b3b27779f3a1805de83c360dfb Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:15:12 -0400 Subject: [PATCH] Adjusted runsc build timer --- .../universal/run_onchange_before_11-install-docker.sh.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.sh.tmpl b/home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.sh.tmpl index c99dc695..6a78b4d0 100644 --- a/home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.sh.tmpl +++ b/home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.sh.tmpl @@ -141,11 +141,11 @@ function gVisorSource() { sudo mkdir -p bin # Wait 5 minutes for build to finish, and if it does not use Go # TODO - Generate container-shim-runsc-v1 as well (low priority since this method is not used and is only recommended for development) - sudo timeout 300 make copy TARGETS=runsc DESTINATION=bin/ + sudo timeout 600 make copy TARGETS=runsc DESTINATION=bin/ if [ -f ./bin/runsc ]; then sudo cp ./bin/runsc /usr/local/bin else - logg error 'Timed out while building `runsc` from source' && exit 6 + logg error 'Timed out while building `runsc` from source (10 minutes)' && exit 6 fi }