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.
1 parent 27e9218 commit 9a1c675Copy full SHA for 9a1c675
src/ci/docker/run.sh
@@ -76,8 +76,8 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
76
echo "Loading images into docker"
77
# docker load sometimes hangs in the CI, so time out after 10 minutes with TERM,
78
# KILL after 12 minutes
79
- loaded_images=$(/usr/bin/timeout -k 720 600 docker load -i /tmp/rustci_docker_cache \
80
- | sed 's/.* sha/sha/')
+ # FIXME: why can't parse output here?
+ loaded_images=$(docker load -i /tmp/rustci_docker_cache)
81
set -e
82
printf "Downloaded containers:\n$loaded_images\n"
83
fi
0 commit comments