This is an automated email from the ASF dual-hosted git repository.

csy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git


The following commit(s) were added to refs/heads/main by this push:
     new 2d59c46d8 [CELEBORN-1298][FOLLOWUP] Support Spark2.4 with Scala2.12
2d59c46d8 is described below

commit 2d59c46d8fcc436e7ab8679277914c1c55bd4be8
Author: sychen <[email protected]>
AuthorDate: Wed Mar 6 11:13:08 2024 +0800

    [CELEBORN-1298][FOLLOWUP] Support Spark2.4 with Scala2.12
    
    ### What changes were proposed in this pull request?
    
    ### Why are the changes needed?
    sbt is not tested in spark2.4 scala2.12 environment.
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    GA
    
    Closes #2357 from cxzl25/CELEBORN-1298-F.
    
    Authored-by: sychen <[email protected]>
    Signed-off-by: Shaoyun Chen <[email protected]>
---
 .github/workflows/sbt.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/sbt.yml b/.github/workflows/sbt.yml
index 53e5db67a..da4a5e8c5 100644
--- a/.github/workflows/sbt.yml
+++ b/.github/workflows/sbt.yml
@@ -69,9 +69,9 @@ jobs:
           - 8
         spark:
           - '2.4'
-        scala-binary:
-          - '2.11'
-          - '2.12'
+        scala:
+          - '2.11.12'
+          - '2.12.10'
     steps:
       - uses: actions/checkout@v2
       - name: Setup JDK ${{ matrix.java }}
@@ -82,7 +82,7 @@ jobs:
           check-latest: false
       - name: Test with SBT
         run: |
-          build/sbt -Pspark-${{ matrix.spark }} "clean; 
celeborn-spark-group/test"
+          build/sbt -Pspark-${{ matrix.spark }} ++${{ matrix.scala }} "clean; 
celeborn-spark-group/test"
       - name: Upload test log
         if: failure()
         uses: actions/upload-artifact@v3
@@ -251,4 +251,4 @@ jobs:
         with:
           name: mr-unit-test-log
           path: |
-            **/target/test/
\ No newline at end of file
+            **/target/test/

Reply via email to