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 1d1e4ae [SPARK-54053] Use Swift 6.2 for all Linux CIs
1d1e4ae is described below
commit 1d1e4ae177e1544f4209d2968b95d5da1c703a99
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Oct 28 07:47:42 2025 -0700
[SPARK-54053] Use Swift 6.2 for all Linux CIs
### What changes were proposed in this pull request?
This PR aims to use `Swift 6.2` for all Linux CIs.
### Why are the changes needed?
To improve the CI stability on Linux environment by using the latest `Swift
6.2` version.
### Does this PR introduce _any_ user-facing change?
No, this is a CI change.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #255 from dongjoon-hyun/SPARK-54053.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 23 ++++++-----------------
1 file changed, 6 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index e25fa03..c0f256a 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -77,25 +77,14 @@ jobs:
- uses: actions/checkout@v5
- name: Build
run: |
- docker run swift:6.1 uname -a
- docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release
+ docker run swift:6.2 uname -a
+ docker run -v $PWD:/spark -w /spark swift:6.2 swift build -c release
- # setup-swift doesn't support ARM linux yet.
build-ubuntu-arm:
runs-on: ubuntu-24.04-arm
timeout-minutes: 20
steps:
- uses: actions/checkout@v5
- - name: Build
- run: |
- docker run swift:6.1 uname -a
- docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release
-
- build-ubuntu-swift62:
- runs-on: ubuntu-latest
- timeout-minutes: 20
- steps:
- - uses: actions/checkout@v5
- name: Build
run: |
docker run swift:6.2 uname -a
@@ -117,8 +106,8 @@ jobs:
- uses: actions/checkout@v5
- name: Build
run: |
- docker run swift:6.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.1 swift
test --no-parallel -c release
+ docker run swift:6.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.2 swift
test --no-parallel -c release
integration-test-ubuntu-spark41:
runs-on: ubuntu-latest
@@ -136,8 +125,8 @@ jobs:
- uses: actions/checkout@v5
- name: Build
run: |
- docker run swift:6.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.1 swift
test --no-parallel -c release
+ docker run swift:6.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.2 swift
test --no-parallel -c release
integration-test-mac-spark41:
runs-on: macos-15
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]