pan3793 commented on code in PR #6848: URL: https://github.com/apache/kyuubi/pull/6848#discussion_r1879487028
########## .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 + cd incubator-gluten + docker run -v $GITHUB_WORKSPACE/incubator-gluten:/work -w /work apache/gluten:vcpkg-centos-7 bash -c " Review Comment: How hard would it be if we just built it from scratch? -- 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: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org