diff --git a/.github/ci-prerequisites.sh b/.github/ci-prerequisites.sh index 4902f78ef2bc..23ed879416de 100755 --- a/.github/ci-prerequisites.sh +++ b/.github/ci-prerequisites.sh @@ -1,8 +1,14 @@ # Reclaim disk space, otherwise we only have 13 GB free at the start of a job +echo 'Before the cleanup:' +df -h # Remove the container images for node: -docker rmi node:10 node:12 mcr.microsoft.com/azure-pipelines/node8-typescript:latest +echo 'Docker images (available for possible removal):' +docker images # That is 18 GB sudo rm -rf /usr/share/dotnet # That is 1.2 GB -sudo rm -rf /usr/share/swift \ No newline at end of file +sudo rm -rf /usr/share/swift + +echo 'After the cleanup:' +df -h