We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6152de0 + 838e673 commit 6717b36Copy full SHA for 6717b36
src/ci/docker/run.sh
@@ -70,7 +70,9 @@ 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
+ echo "Loading images into docker"
76
loaded_images=$(docker load -i /tmp/rustci_docker_cache | sed 's/.* sha/sha/')
77
set -e
78
echo "Downloaded containers:\n$loaded_images"
0 commit comments