We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c6d00 commit ee07b15Copy full SHA for ee07b15
src/ci/docker/run.sh
@@ -31,7 +31,7 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
31
echo "Attempting to download $s3url"
32
rm -f /tmp/rustci_docker_cache
33
set +e
34
- retry curl -f -L -C - -o /tmp/rustci_docker_cache "$url"
+ retry curl -y 30 -Y 10 --connect-timeout 30 -f -L -C - -o /tmp/rustci_docker_cache "$url"
35
loaded_images=$(docker load -i /tmp/rustci_docker_cache | sed 's/.* sha/sha/')
36
set -e
37
echo "Downloaded containers:\n$loaded_images"
0 commit comments