Recently, the GitHub ubuntu runner image changed to:
  Runner Image
    Image: ubuntu-22.04
    Version: 20230728.3.0

The full diff between the old and new runner images is listed at:
https://github.com/actions/runner-images/compare/ubuntu22/20230724.1..ubuntu22/20230728.3

Since then ovn-kubernetes control plane jobs started running out
of disk space:
https://github.com/ovn-org/ovn/actions/runs/5765809788/job/15633058748#step:11:1735

Free up some more disk space be removing packages that are not relevant
to the test.

Signed-off-by: Dumitru Ceara <dce...@redhat.com>
---
 .github/workflows/ovn-kubernetes.yml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ovn-kubernetes.yml 
b/.github/workflows/ovn-kubernetes.yml
index 36d2db8492..cd69d4a8a8 100644
--- a/.github/workflows/ovn-kubernetes.yml
+++ b/.github/workflows/ovn-kubernetes.yml
@@ -96,7 +96,12 @@ jobs:
     steps:
 
     - name: Free up disk space
-      run: sudo eatmydata apt-get remove --auto-remove -y aspnetcore-* 
dotnet-* libmono-* mono-* msbuild php-* php7* ghc-* zulu-*
+      run: |
+        sudo eatmydata apt-get remove --auto-remove -y \
+          azure-cli aspnetcore-* dotnet-* ghc-* firefox \
+          google-chrome-stable google-cloud-sdk \
+          llvm-* microsoft-edge-stable mono-* msbuild php-* php7* \
+          powershell temurin-8-jdk zulu-*
 
     - name: Check out ovn
       uses: actions/checkout@v3
-- 
2.31.1

_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to