Skip to content

Commit

Permalink
Adjusted CI step to clean as much of the ubunutu image as possible (#667
Browse files Browse the repository at this point in the history
)

Currently our CI fails due to not enough space on the runner image. The
adjustment of the Clean Ubuntu Image step cleans up aproximately 30GB of
unrequired files
  • Loading branch information
kfir4444 committed Jun 4, 2023
2 parents 0ad087a + 0144657 commit 479719f
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions .github/workflows/cont_int.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,15 @@ jobs:
uses: actions/checkout@v3

- name: Clean Ubuntu Image
run: |
sudo apt-get purge -y \
'^llvm-.*' \
'php.*' \
'^mongodb-.*' \
'^mysql-.*' \
azure-cli \
google-cloud-sdk \
google-chrome-stable \
firefox \
powershell \
microsoft-edge-stable \
mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
uses: jlumbroso/free-disk-space@main
with:
# This may remove tools actually needed - currently does not
tool-cache: true
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true

- name: Cache RMG-Py
id: cache-rmg-py
Expand Down

0 comments on commit 479719f

Please sign in to comment.