Yikun commented on code in PR #42253:
URL: https://github.com/apache/spark/pull/42253#discussion_r1280475423


##########
.github/workflows/build_and_test.yml:
##########
@@ -408,6 +408,14 @@ jobs:
         key: pyspark-coursier-${{ hashFiles('**/pom.xml', '**/plugins.sbt') }}
         restore-keys: |
           pyspark-coursier-
+    - name: Free up disk space
+      run: |
+        dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 
100
+        df -h
+        rm -rf /__t/CodeQL || echo "fail to delete /__t/CodeQL"
+        rm -rf /__t/go || echo "fail to delete /__t/go"
+        rm -rf /__t/node || echo "fail to delete /__t/node"

Review Comment:
   According the link:
   
https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#installed-apt-packages
   
   seems only above package can be unintall by apt, for other one, we can only 
cleanup by this way, so this PR seems a okay way.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to