gemelen edited a comment on pull request #29286:
URL: https://github.com/apache/spark/pull/29286#issuecomment-679368436


   I found out that GH Action fails because files in `build` directory are 
checked out from repo and then are overridden from cache:
   
   in .github/workflows/master.yml
   
   ```
       steps:
       - name: Checkout Spark repository
         uses: actions/checkout@v2
         # In order to fetch changed files
         with:
           fetch-depth: 0
       # Cache local repositories. Note that GitHub Actions cache has a 2G 
limit.
       - name: Cache Scala, SBT, Maven and Zinc
         uses: actions/cache@v1
         with:
           path: build
           key: build-${{ hashFiles('**/pom.xml') }}
           restore-keys: |
             build-
   ```
   @HyukjinKwon could you please advise how to proceed with that issue?
   


----------------------------------------------------------------
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.

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