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

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-connect-swift.git


The following commit(s) were added to refs/heads/main by this push:
     new 53ad546  [SPARK-55006] Use Spark 4.1.1 for Spark 4.1 integration tests
53ad546 is described below

commit 53ad5461493897fc68c739cf320a34af60413e52
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Jan 12 11:16:56 2026 +0900

    [SPARK-55006] Use Spark 4.1.1 for Spark 4.1 integration tests
    
    ### What changes were proposed in this pull request?
    
    This PR aims to use Apache Spark 4.1.1 in GitHub Action CIs.
    
    ### Why are the changes needed?
    
    Apache Spark 4.1.1 is released officially.
    
    - https://github.com/apache/spark/releases/tag/v4.1.1
    - https://spark.apache.org/docs/4.1.1/
    - https://dist.apache.org/repos/dist/release/spark/spark-4.1.1/
    
    ### Does this PR introduce _any_ user-facing change?
    
    No behavior change.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #279 from dongjoon-hyun/SPARK-55006.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .github/workflows/build_and_test.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index 8575286..f6cabc4 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -93,7 +93,7 @@ jobs:
       SPARK_REMOTE: "sc://localhost:15003"
     services:
       spark:
-        image: apache/spark:4.1.0-scala
+        image: apache/spark:4.1.1-scala
         env:
           SPARK_NO_DAEMONIZE: 1
         ports:
@@ -117,9 +117,9 @@ jobs:
       run: swift test --filter NOTHING -c release
     - name: Test
       run: |
-        curl -LO 
https://www.apache.org/dyn/closer.lua/spark/spark-4.1.0/spark-4.1.0-bin-hadoop3.tgz?action=download
-        tar xvfz spark-4.1.0-bin-hadoop3.tgz && rm spark-4.1.0-bin-hadoop3.tgz
-        mv spark-4.1.0-bin-hadoop3 /tmp/spark
+        curl -LO 
https://www.apache.org/dyn/closer.lua/spark/spark-4.1.1/spark-4.1.1-bin-hadoop3.tgz?action=download
+        tar xvfz spark-4.1.1-bin-hadoop3.tgz && rm spark-4.1.1-bin-hadoop3.tgz
+        mv spark-4.1.1-bin-hadoop3 /tmp/spark
         cd /tmp/spark/sbin
         ./start-connect-server.sh
         cd -
@@ -156,9 +156,9 @@ jobs:
       run: swift test --filter NOTHING -c release
     - name: Test
       run: |
-        curl -LO 
https://www.apache.org/dyn/closer.lua/spark/spark-4.1.0/spark-4.1.0-bin-hadoop3.tgz?action=download
-        tar xvfz spark-4.1.0-bin-hadoop3.tgz && rm spark-4.1.0-bin-hadoop3.tgz
-        mv spark-4.1.0-bin-hadoop3 /tmp/spark
+        curl -LO 
https://www.apache.org/dyn/closer.lua/spark/spark-4.1.1/spark-4.1.1-bin-hadoop3.tgz?action=download
+        tar xvfz spark-4.1.1-bin-hadoop3.tgz && rm spark-4.1.1-bin-hadoop3.tgz
+        mv spark-4.1.1-bin-hadoop3 /tmp/spark
         cd /tmp/spark/sbin
         ./start-connect-server.sh
         cd -


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to