Skip to content

Commit 5d90e9a

Browse files
committed
[SPARK-52744] Add MacOS integration test with Apache Spark 4.1.0-preview1 RC1
1 parent 0dca569 commit 5d90e9a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,24 @@ jobs:
9393
docker run swiftlang/swift:nightly-6.2-noble uname -a
9494
docker run -v $PWD:/spark -w /spark swiftlang/swift:nightly-6.2-noble swift build
9595
96+
integration-test-mac-spark41:
97+
runs-on: macos-15
98+
timeout-minutes: 20
99+
steps:
100+
- uses: actions/checkout@v4
101+
- uses: swift-actions/setup-swift@d10500c1ac8822132eebbd74c48c3372c71d7ff5
102+
with:
103+
swift-version: "6.1"
104+
- name: Test
105+
run: |
106+
curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.1.0-preview1-rc1-bin/spark-4.1.0-preview1-bin-hadoop3.tgz
107+
tar xvfz spark-4.1.0-preview1-bin-hadoop3.tgz
108+
mv spark-4.1.0-preview1-bin-hadoop3 /tmp/spark
109+
cd /tmp/spark/sbin
110+
./start-connect-server.sh
111+
cd ../..
112+
swift test --no-parallel
113+
96114
integration-test-mac:
97115
runs-on: macos-15
98116
timeout-minutes: 20

0 commit comments

Comments
 (0)