This is an automated email from the ASF dual-hosted git repository.
dongjoon-hyun 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 e526d80 [SPARK-57913] Use 4.2.0 RC5 for Spark 4.2 integration tests
e526d80 is described below
commit e526d8071b79df3e94907d26508abe64a03abccf
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Jul 2 15:34:30 2026 -0700
[SPARK-57913] Use 4.2.0 RC5 for Spark 4.2 integration tests
### What changes were proposed in this pull request?
This PR updates the `integration-test-mac-spark42` CI job to use `Apache
Spark 4.2.0` RC5. In addition, this PR adds a SHA-512 checksum verification
step for the downloaded distribution.
### Why are the changes needed?
To test against the latest `Apache Spark 4.2.0` RC5.
- https://dist.apache.org/repos/dist/dev/spark/v4.2.0-rc5-bin/
The pinned SHA-512 checksum matches the official
`spark-4.2.0-bin-hadoop3.tgz.sha512` and guarantees the integrity of the
downloaded artifact before it is used in the tests.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass the CIs and check the log.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Opus 4.8
Closes #430 from dongjoon-hyun/SPARK-57913.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index cc82ec4..c2b3066 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -155,7 +155,8 @@ jobs:
run: swift test --filter NOTHING -c release
- name: Test
run: |
- curl -LO
https://dist.apache.org/repos/dist/dev/spark/v4.2.0-rc4-bin/spark-4.2.0-bin-hadoop3.tgz
+ curl -LO
https://dist.apache.org/repos/dist/dev/spark/v4.2.0-rc5-bin/spark-4.2.0-bin-hadoop3.tgz
+ echo
"3b36907aea8f9a4104fec1f99b5478af2472978813a28df37e05b673ee163b880d908ac1396a11c3bb369a36244b0c9f05ed6d8bcbe24070dc25ed43d7ff7c09
spark-4.2.0-bin-hadoop3.tgz" | shasum -a 512 -c
tar xvfz spark-4.2.0-bin-hadoop3.tgz && rm spark-4.2.0-bin-hadoop3.tgz
mv spark-4.2.0-bin-hadoop3/ /tmp/spark
cd /tmp/spark/sbin
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]