vakarisbk commented on PR #56: URL: https://github.com/apache/spark-docker/pull/56#issuecomment-1766062543
> I never hit this before, but if it is storage limit, you could try to remove some tmp file to save space, such as: > > 1. https://github.com/apache/spark-docker/blob/master/.github/workflows/main.yml#L249 > > ``` > sudo install minikube-linux-amd64 /usr/local/bin/minikube > rm minikube-linux-amd64 > ``` > > It's about to save 80MB > > (later upadte) I also noticed this change also apply on main repo: https://github.com/apache/spark/blob/master/.github/workflows/build_and_test.yml#L1045 > > 2. (if step 1 is ok, we don't need this step) https://github.com/apache/spark-docker/blob/028efd4637fb2cf791d5bd9ea70b2fca472de4b7/.github/workflows/main.yml#L201 > > remove `fetch-depth: 0`, seems also save some space? added `rm minikube-linux-amd64` and removed accidental changes in 3.3.0. Now only 3.5.0 will be built. removing `fetch-deph: 0` would help with space, but the default is `fetch-deph: 1` which only fetches a single commit form the main/master branch. That would make the 3.3.0 build fail as it needs to cherry-pick commits from history. I've tested this out on my own repo: https://github.com/vakarisbk/spark-docker/actions/runs/6545230049/job/17773271828 -- 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]
