We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40ebd07 commit e1e273fCopy full SHA for e1e273f
src/ci/docker/run.sh
@@ -70,7 +70,8 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
70
echo "Attempting to download $url"
71
rm -f /tmp/rustci_docker_cache
72
set +e
73
- retry curl -y 30 -Y 10 --connect-timeout 30 -f -L -C - -o /tmp/rustci_docker_cache "$url"
+ retry curl --max-time 600 -y 30 -Y 10 --connect-timeout 30 -f -L -C - \
74
+ -o /tmp/rustci_docker_cache "$url"
75
loaded_images=$(docker load -i /tmp/rustci_docker_cache | sed 's/.* sha/sha/')
76
set -e
77
echo "Downloaded containers:\n$loaded_images"
0 commit comments