Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,17 @@ jobs:
echo "Removing android"
sudo rm -rf /usr/local/lib/android
fi
if [ -d "/opt/ghc" ]; then
if [ -d "/usr/local/.ghcup" ]; then
echo "Removing haskell"
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/.ghcup
fi
if [ -d "/opt/hostedtoolcache/CodeQL" ]; then
echo "Removing CodeQL"
sudo rm -rf /opt/hostedtoolcache/CodeQL
fi
if [ -d "/usr/share/swift" ]; then
echo "Removing swift"
sudo rm -rf /usr/share/swift
fi

echo "Disk space:"
Expand Down