File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 5555 - name : Build
5656 run : swift build -v
5757
58+ # setup-swift doesn't support ARM linux yet.
59+ build-ubuntu-arm :
60+ runs-on : ubuntu-24.04-arm
61+ steps :
62+ - uses : actions/checkout@v4
63+ - name : Build
64+ run : |
65+ docker run swift:6.1 uname -a
66+ docker run -v $PWD:/orc -w /orc swift:6.1 swift build -v
67+
5868 integration-test-linux :
5969 runs-on : ubuntu-latest
6070 services :
7383 - name : Test
7484 run : swift test --no-parallel
7585
86+ integration-test-linux-arm :
87+ runs-on : ubuntu-24.04-arm
88+ services :
89+ spark :
90+ image : apache/spark:4.0.0-preview2
91+ env :
92+ SPARK_NO_DAEMONIZE : 1
93+ ports :
94+ - 15002:15002
95+ options : --entrypoint /opt/spark/sbin/start-connect-server.sh
96+ steps :
97+ - uses : actions/checkout@v4
98+ - name : Test
99+ run : |
100+ docker run swift:6.1 uname -a
101+ docker run -v $PWD:/orc -w /orc swift:6.1 swift build -v
102+
76103 integration-test-mac :
77104 runs-on : macos-15
78105 steps :
You can’t perform that action at this time.
0 commit comments