pan3793 commented on code in PR #6848:
URL: https://github.com/apache/kyuubi/pull/6848#discussion_r1879480179
##########
.github/workflows/gluten.yml:
##########
@@ -55,20 +49,45 @@ jobs:
id: gluten-cache
uses: actions/cache@v4
with:
- path: gluten/package/target/
+ path: incubator-gluten/package/target/
key: gluten_package_${{ steps.date.outputs.date }}
- - name: Build gluten project
+ - name: Get Ccache
+ id: gluten-ccache-cache
+ uses: actions/cache@v4
+ with:
+ path: incubator-gluten/.ccache
+ key: ccache-centos7-release-default-${{github.sha}}
+ restore-keys: |
+ ccache-centos7-release-default
+ - name: Build Gluten velox third party
run: |
if [[ "${{ steps.gluten-cache.outputs.cache-hit }}" != 'true' ]];
then
- git clone https://github.com/oap-project/gluten.git
- cd gluten
- ./dev/buildbundle-veloxbe.sh
+ git clone https://github.com/apache/incubator-gluten.git
Review Comment:
use `--depth=1` to skip retrieving git history commits to speed up the clone
```suggestion
git clone https://github.com/apache/incubator-gluten.git
--depth=1
```
--
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]