Skip to content

Commit c6cab87

Browse files
committed
[SPARK-53477] Add integration-test-ubuntu-spark41 GitHub Action job
1 parent 339b037 commit c6cab87

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,25 @@ jobs:
112112
docker run swift:6.1 uname -a
113113
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
114114
115+
integration-test-ubuntu-spark41:
116+
runs-on: ubuntu-latest
117+
env:
118+
SPARK_REMOTE: "sc://localhost:15003"
119+
services:
120+
spark:
121+
image: apache/spark:4.1.0-preview1
122+
env:
123+
SPARK_NO_DAEMONIZE: 1
124+
ports:
125+
- 15003:15002
126+
options: --entrypoint /opt/spark/sbin/start-connect-server.sh
127+
steps:
128+
- uses: actions/checkout@v5
129+
- name: Build
130+
run: |
131+
docker run swift:6.2 uname -a
132+
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
133+
115134
integration-test-mac-spark41:
116135
runs-on: macos-15
117136
timeout-minutes: 20

0 commit comments

Comments
 (0)