Skip to content

Commit

Permalink
only doc test 14
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdboom committed Apr 9, 2024
1 parent 6a024fc commit 37b2224
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,22 +114,21 @@ jobs:
echo "Freeing up disk space on CI system"
echo "=============================================="
echo "Listing 100 largest packages"
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100
df -h
echo "Removing large packages..."
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y azure-cli google-cloud-cli google-chrome-stable firefox mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
sudo df -h
df -h
echo "Removing large directories"
# Deleting ~15GB
sudo rm -rf /usr/share/dotnet/
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo df -h
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc
rm -rf "/usr/local/share/boost"
rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
- name: Install dependencies
run: |
pdm sync -G full -G test
Expand Down Expand Up @@ -195,14 +194,6 @@ jobs:
echo "Freeing up disk space on CI system"
echo "=============================================="
df -h
echo "Removing large packages..."
apt-get remove -y '^dotnet-.*'
apt-get remove -y '^llvm-.*'
apt-get remove -y azure-cli google-cloud-cli google-chrome-stable firefox mono-devel
apt-get autoremove -y
apt-get clean
df -h
echo "Removing large directories"
# Deleting ~15GB
rm -rf /usr/share/dotnet/
rm -rf /opt/ghc
Expand Down

0 comments on commit 37b2224

Please sign in to comment.