mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 12:14:10 +08:00
e678483ecd
This is leftovers from the compilation/installation phase. In the build containers this took around ~ 400 MB. Reviewed-by: Martin Roukala <martin.roukala@mupuf.org> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25843>
15 lines
239 B
Bash
Executable File
15 lines
239 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if test -f /etc/debian_version; then
|
|
apt-get autoremove -y --purge
|
|
fi
|
|
|
|
# Clean up any build cache
|
|
rm -rf /root/.cache
|
|
rm -rf /root/.cargo
|
|
rm -rf /.cargo
|
|
|
|
if test -x /usr/bin/ccache; then
|
|
ccache --show-stats
|
|
fi
|