Skip to content
Snippets Groups Projects
Unverified Commit ee7de9d6 authored by Yuki Okushi's avatar Yuki Okushi Committed by GitHub
Browse files

Merge pull request #1742 from JohnTitor/check-docker

Add a workaround for disk space failures on Docker
parents 1da0baa6 9740c8c7
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,12 @@ CARGO_HOME="${CARGO_HOME:-$DEFAULT_CARGO_HOME}"
echo "${HOME}"
pwd
# Avoid "no space left on device" failure.
if [ "${1}" = "aarch64-linux-android" ] ; then
docker system prune -af
docker system df
fi
run() {
echo "Building docker container for target ${1}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment