Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2021-04-13 19:19:09 +0300
committerRay Molenkamp <github@lazydodo.com>2021-04-13 19:19:09 +0300
commit5936ef986a279fd5ae374352763e166ee4d97b5b (patch)
treedddf253c7afd67836b2fcdf6806beb53bc89b4e8 /build_files/build_environment/cmake
parentb8479a70c936c5c59f199a847d679c80196e6c0b (diff)
deps_builder: Bump download time out to 30 mins
The timeout was set to 60 seconds, which was problematic for some of the larger files like boost from the blender svn mirror.
Diffstat (limited to 'build_files/build_environment/cmake')
-rw-r--r--build_files/build_environment/cmake/download.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/build_environment/cmake/download.cmake b/build_files/build_environment/cmake/download.cmake
index f52957afeab..27351ddee45 100644
--- a/build_files/build_environment/cmake/download.cmake
+++ b/build_files/build_environment/cmake/download.cmake
@@ -12,7 +12,7 @@ function(download_source dep)
if(NOT EXISTS ${TARGET_FILE})
message("Checking source : ${dep} - source not found downloading from ${TARGET_URI}")
file(DOWNLOAD ${TARGET_URI} ${TARGET_FILE}
- TIMEOUT 60 # seconds
+ TIMEOUT 1800 # seconds
EXPECTED_HASH ${TARGET_HASH_TYPE}=${TARGET_HASH}
TLS_VERIFY ON
SHOW_PROGRESS