baibaichen commented on code in PR #11347:
URL:
https://github.com/apache/incubator-gluten/pull/11347#discussion_r2659524012
##########
.github/workflows/velox_backend_x86.yml:
##########
@@ -1483,3 +1483,109 @@ jobs:
**/target/*.log
**/gluten-ut/**/hs_err_*.log
**/gluten-ut/**/core.*
+
+ spark-test-spark41:
+ needs: build-native-lib-centos-7
+ runs-on: ubuntu-22.04
+ env:
+ SPARK_TESTING: true
+ container: apache/gluten:centos-8-jdk17
+ steps:
+ - uses: actions/checkout@v2
+ - name: Download All Artifacts
+ uses: actions/download-artifact@v4
+ with:
+ name: velox-native-lib-centos-7-${{github.sha}}
+ path: ./cpp/build/releases
+ - name: Download Arrow Jars
+ uses: actions/download-artifact@v4
+ with:
+ name: arrow-jars-centos-7-${{github.sha}}
+ path: /root/.m2/repository/org/apache/arrow/
+ - name: Prepare
+ run: |
+ dnf module -y install python39 && \
+ alternatives --set python3 /usr/bin/python3.9 && \
+ pip3 install setuptools==77.0.3 && \
+ pip3 install pyspark==3.5.5 cython && \
Review Comment:
@jackylee-ch
Interesting, it was copied from Spark 4.0, cc @zhouyuan
However, starting with Spark
4.1(https://github.com/apache/spark/pull/51259), the minimum supported Python
version is 3.10. I'm not familiar with how to configure the Python environment,
so I've excluded these two unit tests for now, see
(https://github.com/apache/incubator-gluten/pull/11347/commits/2ef147cb286e23c013223302f3c6213c7dd02337).
--
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]