You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by "HyukjinKwon (via GitHub)" <gi...@apache.org> on 2023/07/26 11:41:03 UTC

[GitHub] [spark] HyukjinKwon commented on a diff in pull request #42159: [SPARK-44557][INFRA] Clean up untracked/ignored files before running pip packaging test in GitHub Actions

HyukjinKwon commented on code in PR #42159:
URL: https://github.com/apache/spark/pull/42159#discussion_r1274833924


##########
dev/run-pip-tests:
##########
@@ -25,6 +25,15 @@ shopt -s nullglob
 FWDIR="$(cd "$(dirname "$0")"/..; pwd)"
 cd "$FWDIR"
 
+# Clean ignored/untracked files that do not need
+# for pip packaging test. Machines in GitHub Action do not have
+# enough space, see also SPARK-44557.
+if [[ -z "${GITHUB_ACTION}" ]]; then
+  git clean -d -f -x -e assembly
+fi
+
+du -sch .[!.]* * |sort -h
+

Review Comment:
   ```suggestion
   
   ```



-- 
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: reviews-unsubscribe@spark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org