You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/swift_package_test.yml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -166,19 +166,21 @@ on:
166
166
wasm_sdk_build_command:
167
167
type: string
168
168
description: "Command to use when building the package with the Swift SDK for Wasm"
169
-
default: "swift build"
169
+
# Temporarily use native build system on Android due to https://github.com/swiftlang/swift/issues/88282
170
+
default: "swift build --build-system native"
170
171
android_sdk_build_command:
171
172
type: string
172
173
description: "Command to use when building the package with the Swift SDK for Android"
173
-
default: "swift build"
174
+
# Temporarily use native build system on Android due to https://github.com/swiftlang/swift/issues/88282
175
+
default: "swift build --build-system native"
174
176
android_sdk_triples:
175
177
type: string
176
178
description: "The triples to use when building with the Swift SDK for Android. The final triple in the list will be used for the emulator testing and should match the host architecture."
0 commit comments