Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenswat committed Jul 24, 2024
1 parent 6e9b223 commit 03337e8
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- "**"
tags:
- 'v*'

Expand Down Expand Up @@ -46,22 +47,14 @@ jobs:
echo "Listing 25 largest packages"
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 25
echo "Removing large packages"
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y '^libllvm-.*'
sudo apt-get remove -y azure-cli
sudo apt-get remove -y google-cloud-cli
sudo apt-get remove -y google-chrome-stable
sudo apt-get remove -y firefox
sudo apt-get remove -y powershell
sudo apt-get remove -y mono-devel
sudo apt-get remove -y '^temurin.*'
sudo apt-get autoremove -y
sudo apt-get purge -y '^dotnet-.*' '^llvm-.*' '^libllvm-.*' azure-cli \
'^google-cloud-cli*' google-chrome-stable firefox powershell mono-devel \
'^temurin.*' microsoft-edge-stable mysql-server-core-8.0
sudo apt-get --purge autoremove -y
sudo apt-get clean
rm -rf /usr/share/dotnet/
df -h
du -sh /*/* | sort -rh | head -n 50
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down

0 comments on commit 03337e8

Please sign in to comment.