File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,11 @@ jobs:
38
38
fail-fast : false
39
39
matrix :
40
40
# blank arch builds all (aarch64,x86_64,armv7)
41
- arch : ['']
41
+ # arch: ['']
42
42
# builds only x86_64 to speed up the validation
43
43
# arch: ['x86_64']
44
- # arch: ['x86_64', '']
44
+ # build both the quick (x86_64) and complete (aarch64,x86_64,armv7) SDKs
45
+ arch : ['x86_64', '']
45
46
runs-on : ubuntu-24.04
46
47
steps :
47
48
- name : Checkout repository
@@ -137,6 +138,8 @@ jobs:
137
138
echo 'import Android' >> Sources/DemoProject/DemoProject.swift
138
139
${{ steps.info.outputs.swift-path }} build --build-tests --swift-sdk ${{ steps.info.outputs.sdk-id }}
139
140
- name : Test Demo Project on Android
141
+ # only test for the complete arch SDK build to speed up CI
142
+ if : ${{ matrix.arch == '' }}
140
143
uses : skiptools/swift-android-action@main
141
144
with :
142
145
package-path : ${{ runner.temp }}/DemoProject
@@ -149,6 +152,8 @@ jobs:
149
152
cd swift-algorithms
150
153
${{ steps.info.outputs.swift-path }} build --build-tests --swift-sdk ${{ steps.info.outputs.sdk-id }}
151
154
- name : Test swift-algorithms on Android
155
+ # only test for the complete arch SDK build to speed up CI
156
+ if : ${{ matrix.arch == '' }}
152
157
uses : skiptools/swift-android-action@main
153
158
with :
154
159
# package-path: ${{ runner.temp }}/DemoProject
You can’t perform that action at this time.
0 commit comments