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
Updated default build command for Android SDK to use 'swift build' instead of 'swift build --build-system native'.
The 4/27 snapshot contains the requisite changes for Android to work.
For Wasm, we want to wait until swiftlang/swift-build#1348 lands before unpinning.
Copy file name to clipboardExpand all lines: .github/workflows/swift_package_test.yml
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -171,8 +171,7 @@ on:
171
171
android_sdk_build_command:
172
172
type: string
173
173
description: "Command to use when building the package with the Swift SDK for Android"
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
+
default: "swift build"
176
175
android_sdk_triples:
177
176
type: string
178
177
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