Skip to content

Commit 2f2e364

Browse files
committed
[SPARK-53466] Use Spark 4.0.1 instead of 4.0.0
### What changes were proposed in this pull request? This PR aims to upgrade CI to use Spark `4.0.1` instead of `4.0.0`. ### Why are the changes needed? To test against on the latest Spark 4.0.1 version. ### Does this PR introduce _any_ user-facing change? No, this is a change of test infra. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #234 from dongjoon-hyun/SPARK-53466. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent e20a9fc commit 2f2e364

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
SPARK_REMOTE: "sc://localhost:15003"
100100
services:
101101
spark:
102-
image: apache/spark:4.0.0
102+
image: apache/spark:4.0.1
103103
env:
104104
SPARK_NO_DAEMONIZE: 1
105105
ports:
@@ -167,9 +167,9 @@ jobs:
167167
run: swift test --filter NOTHING -c release
168168
- name: Test
169169
run: |
170-
curl -LO https://www.apache.org/dyn/closer.lua/spark/spark-4.0.0/spark-4.0.0-bin-hadoop3.tgz?action=download
171-
tar xvfz spark-4.0.0-bin-hadoop3.tgz && rm spark-4.0.0-bin-hadoop3.tgz
172-
mv spark-4.0.0-bin-hadoop3 /tmp/spark
170+
curl -LO https://www.apache.org/dyn/closer.lua/spark/spark-4.0.1/spark-4.0.1-bin-hadoop3.tgz?action=download
171+
tar xvfz spark-4.0.1-bin-hadoop3.tgz && rm spark-4.0.1-bin-hadoop3.tgz
172+
mv spark-4.0.1-bin-hadoop3 /tmp/spark
173173
cd /tmp/spark/sbin
174174
./start-connect-server.sh
175175
cd -

0 commit comments

Comments
 (0)