Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
- uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.3.1 uname -a
docker run -v $PWD:/spark -w /spark swift:6.3.1 swift build -c release
docker run swift:6.3.2 uname -a
docker run -v $PWD:/spark -w /spark swift:6.3.2 swift build -c release

build-ubuntu-arm:
runs-on: ubuntu-24.04-arm
Expand All @@ -67,8 +67,8 @@ jobs:
- uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.3.1 uname -a
docker run -v $PWD:/spark -w /spark swift:6.3.1 swift build -c release
docker run swift:6.3.2 uname -a
docker run -v $PWD:/spark -w /spark swift:6.3.2 swift build -c release

integration-test-ubuntu:
runs-on: ubuntu-latest
Expand All @@ -86,8 +86,8 @@ jobs:
- uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.3.1 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.3.1 swift test --no-parallel -c release
docker run swift:6.3.2 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.3.2 swift test --no-parallel -c release

integration-test-ubuntu-spark41:
runs-on: ubuntu-latest
Expand All @@ -105,8 +105,8 @@ jobs:
- uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.3.1 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.3.1 swift test --no-parallel -c release
docker run swift:6.3.2 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.3.2 swift test --no-parallel -c release

integration-test-ubuntu-spark42:
runs-on: ubuntu-latest
Expand All @@ -120,8 +120,8 @@ jobs:
-c spark.sql.timeType.enabled=true
- name: Test
run: |
docker run swift:6.3.1 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.3.1 swift test --no-parallel -c release
docker run swift:6.3.2 uname -a
docker run --add-host=host.docker.internal:host-gateway -v $PWD:/spark -w /spark -e SPARK_REMOTE='sc://host.docker.internal:15003' swift:6.3.2 swift test --no-parallel -c release

integration-test-mac-spark41:
runs-on: macos-26
Expand Down
4 changes: 2 additions & 2 deletions Examples/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM swift:6.3.1 AS builder
FROM swift:6.3.2 AS builder

WORKDIR /app

ADD https://download.swift.org/swift-6.3.1-release/static-sdk/swift-6.3.1-RELEASE/swift-6.3.1-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
ADD https://download.swift.org/swift-6.3.2-release/static-sdk/swift-6.3.2-RELEASE/swift-6.3.2-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
RUN swift sdk install /tmp/swift-static-sdk.tar.gz && \
rm /tmp/swift-static-sdk.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion Examples/app/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.3.1
// swift-tools-version: 6.3.2
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
Expand Down
4 changes: 2 additions & 2 deletions Examples/pi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM swift:6.3.1 AS builder
FROM swift:6.3.2 AS builder

WORKDIR /app

ADD https://download.swift.org/swift-6.3.1-release/static-sdk/swift-6.3.1-RELEASE/swift-6.3.1-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
ADD https://download.swift.org/swift-6.3.2-release/static-sdk/swift-6.3.2-RELEASE/swift-6.3.2-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
RUN swift sdk install /tmp/swift-static-sdk.tar.gz && \
rm /tmp/swift-static-sdk.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion Examples/pi/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.3.1
// swift-tools-version: 6.3.2
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
Expand Down
4 changes: 2 additions & 2 deletions Examples/spark-sql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM swift:6.3.1 AS builder
FROM swift:6.3.2 AS builder

WORKDIR /app

ADD https://download.swift.org/swift-6.3.1-release/static-sdk/swift-6.3.1-RELEASE/swift-6.3.1-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
ADD https://download.swift.org/swift-6.3.2-release/static-sdk/swift-6.3.2-RELEASE/swift-6.3.2-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
RUN swift sdk install /tmp/swift-static-sdk.tar.gz && \
rm /tmp/swift-static-sdk.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion Examples/spark-sql/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.3.1
// swift-tools-version: 6.3.2
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
Expand Down
4 changes: 2 additions & 2 deletions Examples/stream/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM swift:6.3.1 AS builder
FROM swift:6.3.2 AS builder

WORKDIR /app

ADD https://download.swift.org/swift-6.3.1-release/static-sdk/swift-6.3.1-RELEASE/swift-6.3.1-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
ADD https://download.swift.org/swift-6.3.2-release/static-sdk/swift-6.3.2-RELEASE/swift-6.3.2-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
RUN swift sdk install /tmp/swift-static-sdk.tar.gz && \
rm /tmp/swift-static-sdk.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion Examples/stream/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.3.1
// swift-tools-version: 6.3.2
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
Expand Down
4 changes: 2 additions & 2 deletions Examples/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM swift:6.3.1 AS builder
FROM swift:6.3.2 AS builder

WORKDIR /app

ADD https://download.swift.org/swift-6.3.1-release/static-sdk/swift-6.3.1-RELEASE/swift-6.3.1-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
ADD https://download.swift.org/swift-6.3.2-release/static-sdk/swift-6.3.2-RELEASE/swift-6.3.2-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz /tmp/swift-static-sdk.tar.gz
RUN swift sdk install /tmp/swift-static-sdk.tar.gz && \
rm /tmp/swift-static-sdk.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion Examples/web/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.3.1
// swift-tools-version: 6.3.2
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.3.1
// swift-tools-version: 6.3.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
//
// Licensed to the Apache Software Foundation (ASF) under one
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For example, a user can develop and ship a lightweight Swift-based SparkPi app.
## Requirements

- [Apache Spark 4.1.1 (January 2026)](https://github.com/apache/spark/releases/tag/v4.1.1)
- [Swift 6.3.1 (April 2026)](https://swift.org)
- [Swift 6.3.2 (May 2026)](https://swift.org)
- [gRPC Swift 2.4 (April 2026)](https://github.com/grpc/grpc-swift-2/releases/tag/2.4.0)
- [gRPC Swift Protobuf 2.3.0 (April 2026)](https://github.com/grpc/grpc-swift-protobuf/releases/tag/2.3.0)
- [gRPC Swift NIO Transport 2.7.0 (April 2026)](https://github.com/grpc/grpc-swift-nio-transport/releases/tag/2.7.0)
Expand Down
2 changes: 1 addition & 1 deletion Sources/SparkConnect/Documentation.docc/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ targets: [

## Prerequisites

- Swift 6.3.1 or later
- Swift 6.3.2 or later
- macOS 15+, iOS 18+, watchOS 11+, or tvOS 18+
- A running Apache Spark cluster with Spark Connect enabled

Expand Down
Loading