Skip to content

Commit

Permalink
Update premerge.yml
Browse files Browse the repository at this point in the history
The provide additional free space step fails. Subset of packages no longer installed with ubuntu-latest. Combining the apt-get remove into a single line to reduce the investigations required.
  • Loading branch information
TrevorBenson authored Oct 22, 2023
1 parent 7a11683 commit 7b4c9dc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/premerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ jobs:
# Workaround to provide additional free space for builds.
# https://github.com/actions/virtual-environments/issues/2840
sudo apt-get update -y
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y azure-cli google-cloud-sdk google-chrome-stable firefox powershell mono-devel
sudo apt-get remove -y '^dotnet-.*' 'php.*' azure-cli google-cloud-sdk google-chrome-stable firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
sudo rm -rf "/usr/share/dotnet"
Expand Down

0 comments on commit 7b4c9dc

Please sign in to comment.