From 76a5503669a60cf9039fcd7b89be8efb51ae864d Mon Sep 17 00:00:00 2001 From: clemahieu Date: Mon, 15 May 2023 17:48:41 +0100 Subject: [PATCH] Increasing build timeout time from 30 minutes to 60 minutes. (#4232) --- ci/build-docker-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build-docker-image.sh b/ci/build-docker-image.sh index 88d49168..e0efb6d9 100755 --- a/ci/build-docker-image.sh +++ b/ci/build-docker-image.sh @@ -20,7 +20,7 @@ echo "Pulling $githubTag" "$scripts"/custom-timeout.sh 20 docker pull "${githubTag}" || true echo "Building $githubTag" -"$scripts"/custom-timeout.sh 30 docker build "$@" --build-arg REPOSITORY=${GITHUB_REPOSITORY} -f "${dockerFile}" -t "${githubTag}" --cache-from "${githubTag}" . +"$scripts"/custom-timeout.sh 60 docker build "$@" --build-arg REPOSITORY=${GITHUB_REPOSITORY} -f "${dockerFile}" -t "${githubTag}" --cache-from "${githubTag}" . echo "Tagging ${dockerTag} from ${githubTag}" docker tag $githubTag $dockerTag