zhouyuan commented on code in PR #11519:
URL: 
https://github.com/apache/incubator-gluten/pull/11519#discussion_r2745499764


##########
.github/workflows/velox_backend_x86.yml:
##########
@@ -1510,3 +1510,326 @@ jobs:
             **/target/*.log
             **/gluten-ut/**/hs_err_*.log
             **/gluten-ut/**/core.*
+
+  build-native-lib-centos-9:

Review Comment:
   we should download the native libs from `build-native-lib-centos-9`



##########
.github/workflows/velox_backend_x86.yml:
##########
@@ -1510,3 +1510,326 @@ jobs:
             **/target/*.log
             **/gluten-ut/**/hs_err_*.log
             **/gluten-ut/**/core.*
+
+  build-native-lib-centos-9:
+    runs-on: ubuntu-22.04
+    container: apache/gluten:vcpkg-centos-9
+    steps:
+      - uses: actions/checkout@v4
+      - name: Get Ccache
+        uses: actions/cache/restore@v4
+        with:
+          path: '${{ env.CCACHE_DIR }}'
+          key: ccache-centos9-release-default-${{github.sha}}
+          restore-keys: |
+            ccache-centos9-release-default
+      - name: Build Gluten native libraries
+        run: |
+          df -a
+          bash dev/ci-velox-buildstatic-centos-9.sh
+          ccache -s
+          mkdir -p $GITHUB_WORKSPACE/.m2/repository/org/apache/arrow/
+          cp -r /root/.m2/repository/org/apache/arrow/* 
$GITHUB_WORKSPACE/.m2/repository/org/apache/arrow/
+      - name: "Save ccache"
+        if: always()
+        uses: actions/cache/save@v4
+        id: ccache
+        with:
+          path: '${{ env.CCACHE_DIR }}'
+          key: ccache-centos9-release-default-${{github.sha}}
+      - uses: actions/upload-artifact@v4
+        with:
+          name: velox-native-lib-centos-9-${{github.sha}}
+          path: ./cpp/build/releases/
+          if-no-files-found: error
+      - uses: actions/upload-artifact@v4
+        with:
+          name: arrow-jars-centos-9-${{github.sha}}
+          path: .m2/repository/org/apache/arrow/
+          if-no-files-found: error
+
+  spark-test-spark41-centos9:

Review Comment:
   let's move the `spark41` tests to centos 9 firstly



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

Reply via email to