Skip to content

Commit 9b3751a

Browse files
committed
Add tests for swift-argument-parser and swift-system
1 parent e10b316 commit 9b3751a

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

.github/workflows/build_android_sdk.yml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
- name: Test swift-algorithms
160160
uses: skiptools/swift-android-action@main
161161
with:
162-
run-tests: ${{ matrix.arch == '' }}
162+
run-tests: true
163163
package-path: swift-algorithms
164164
installed-sdk: ${{ steps.info.outputs.sdk-id }}
165165
installed-swift: ${{ steps.info.outputs.swift-root }}
@@ -172,8 +172,34 @@ jobs:
172172
- name: Test swift-android-native
173173
uses: skiptools/swift-android-action@main
174174
with:
175-
run-tests: ${{ matrix.arch == '' }}
175+
run-tests: true
176176
package-path: swift-android-native
177177
installed-sdk: ${{ steps.info.outputs.sdk-id }}
178178
installed-swift: ${{ steps.info.outputs.swift-root }}
179179

180+
- name: Checkout swift-argument-parser
181+
uses: actions/checkout@v4
182+
with:
183+
repository: apple/swift-argument-parser
184+
path: swift-argument-parser
185+
- name: Test swift-argument-parser
186+
uses: skiptools/swift-android-action@main
187+
with:
188+
run-tests: true
189+
package-path: swift-argument-parser
190+
installed-sdk: ${{ steps.info.outputs.sdk-id }}
191+
installed-swift: ${{ steps.info.outputs.swift-root }}
192+
193+
- name: Checkout swift-system
194+
uses: actions/checkout@v4
195+
with:
196+
repository: apple/swift-system
197+
path: swift-system
198+
- name: Test swift-system
199+
uses: skiptools/swift-android-action@main
200+
with:
201+
run-tests: true
202+
package-path: swift-system
203+
installed-sdk: ${{ steps.info.outputs.sdk-id }}
204+
installed-swift: ${{ steps.info.outputs.swift-root }}
205+

0 commit comments

Comments
 (0)