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 55
55
- name : Build
56
56
run : swift build -v
57
57
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
+
58
68
integration-test-linux :
59
69
runs-on : ubuntu-latest
60
70
services :
73
83
- name : Test
74
84
run : swift test --no-parallel
75
85
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 test --no-parallel
102
+
76
103
integration-test-mac :
77
104
runs-on : macos-15
78
105
steps :
You can’t perform that action at this time.
0 commit comments