Skip to content

Commit 03ba1a0

Browse files
committed
[SPARK-53698] Support Swift 6.2
### What changes were proposed in this pull request? This PR aims to support `Swift 6.2` by adding the official test coverage and updating `README.md`. ### Why are the changes needed? `Swift 6.2` is released on 2025-09-15 finally. We need to support it officially. - https://www.swift.org/blog/swift-6.2-released/ ### 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 #243 from dongjoon-hyun/SPARK-53698. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent e7ed674 commit 03ba1a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ jobs:
9090
- uses: actions/checkout@v5
9191
- name: Build
9292
run: |
93-
docker run swiftlang/swift:nightly-6.2-amazonlinux2 uname -a
94-
docker run -v $PWD:/spark -w /spark swiftlang/swift:nightly-6.2-amazonlinux2 swift build
93+
docker run swift:6.2 uname -a
94+
docker run -v $PWD:/spark -w /spark swift:6.2 swift build -c release
9595
9696
integration-test-ubuntu:
9797
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ So far, this library project is tracking the upstream changes of [Apache Arrow](
1717
## Requirement
1818

1919
- [Apache Spark 4.0.0 (May 2025)](https://github.com/apache/spark/releases/tag/v4.0.0)
20-
- [Swift 6.0 (2024) or 6.1 (2025)](https://swift.org)
20+
- [Swift 6.0/6.1/6.2 (September 2025)](https://swift.org)
2121
- [gRPC Swift 2.1 (July 2025)](https://github.com/grpc/grpc-swift-2/releases/tag/2.1.0)
2222
- [gRPC Swift Protobuf 2.1 (August 2025)](https://github.com/grpc/grpc-swift-protobuf/releases/tag/2.1.1)
2323
- [gRPC Swift NIO Transport 2.1 (August 2025)](https://github.com/grpc/grpc-swift-nio-transport/releases/tag/2.1.0)

0 commit comments

Comments
 (0)