Skip to content

Commit

Permalink
cleaning space in ubuntu is temporarily broken
Browse files Browse the repository at this point in the history
  • Loading branch information
briedel authored Sep 28, 2023
1 parent b5d14b0 commit 153e7ba
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build_icetray.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install update repos
run: sudo apt-get update
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@v1.2.0
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
Expand All @@ -41,8 +41,22 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
swap-storage: true
- name: manually remove gcloud
shell: bash
run: sudo apt-get remove google-cloud-cli
- name: same as 'large-packages' but without 'google-cloud-sdk'
shell: bash
run: |
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^mongodb-.*'
sudo apt-get remove -y '^mysql-.*'
sudo apt-get remove -y azure-cli google-chrome-stable firefox powershell mono-devel libgl1-mesa-dri
sudo apt-get autoremove -y
sudo apt-get clean
- name: Set IceTray Version
run: echo "ICETRAY_VERSION=$(
if [ ${{ github.event.inputs.icetray_version }} != ${{ env.ICETRAY_VERSION_DEFAULT}} ]; then
Expand Down

0 comments on commit 153e7ba

Please sign in to comment.