Skip to content

Commit 7578b5e

Browse files
committed
Add MacOS integration test with Apache Spark 4.0.0 RC3
1 parent 2c91276 commit 7578b5e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,19 @@ jobs:
7272
swift-version: "6"
7373
- name: Test
7474
run: swift test --no-parallel
75+
76+
integration-test-mac:
77+
runs-on: macos-15
78+
steps:
79+
- uses: actions/checkout@v4
80+
- uses: swift-actions/[email protected]
81+
with:
82+
swift-version: "6"
83+
- name: Test
84+
run: |
85+
curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc3-bin/spark-4.0.0-bin-hadoop3.tgz
86+
tar xvfz spark-4.0.0-bin-hadoop3.tgz
87+
cd spark-4.0.0-bin-hadoop3.tgz
88+
sbin/start-connect-server.sh
89+
cd ..
90+
swift test --no-parallel

0 commit comments

Comments
 (0)