Skip to content

Commit ff417c4

Browse files
committed
[SPARK-52658] Add Swift 6.2 build test CI
### What changes were proposed in this pull request? This PR aims to add `Swift 6.2` build test CI. ### Why are the changes needed? To be ready for the upcoming Swift 6.2. - https://forums.swift.org/t/swift-6-2-release-process/78371 ### Does this PR introduce _any_ user-facing change? No, this is a test infra change. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #206 from dongjoon-hyun/SPARK-52658. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 97df000 commit ff417c4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,16 @@ jobs:
8383
docker run swift:6.1 uname -a
8484
docker run -v $PWD:/spark -w /spark swift:6.1 swift build -c release
8585
86+
build-ubuntu-swift62:
87+
runs-on: ubuntu-latest
88+
timeout-minutes: 20
89+
steps:
90+
- uses: actions/checkout@v4
91+
- name: Build
92+
run: |
93+
docker run swiftlang/swift:nightly-6.2-noble uname -a
94+
docker run -v $PWD:/spark -w /spark swiftlang/swift:nightly-6.2-noble swift build
95+
8696
integration-test-mac:
8797
runs-on: macos-15
8898
timeout-minutes: 20

0 commit comments

Comments
 (0)