Skip to content

Commit ef1a1d1

Browse files
authored
Merge pull request #80037 from swiftlang/revert-79944-windrd-update-default-sdks
Revert "utils: Update default Android SDKs in build.ps1"
2 parents 644462c + 2499f69 commit ef1a1d1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

utils/build.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,9 @@ $msbuild = "$VSInstallRoot\MSBuild\Current\Bin\$BuildArchName\MSBuild.exe"
215215
$UnixToolsBinDir = "$env:SystemDrive\Program Files\Git\usr\bin"
216216

217217
if ($Android -and ($AndroidSDKs.Length -eq 0)) {
218-
# By default, build and test the arm64 Android SDK. That choice might change
219-
# once we can run executable tests in CI.
220-
$AndroidSDKs = @("aarch64")
218+
# Enable all android SDKs by default.
219+
$AndroidSDKs = @("aarch64","armv7","i686","x86_64")
221220
}
222-
223221
# Work around limitations of cmd passing in array arguments via powershell.exe -File
224222
if ($AndroidSDKs.Length -eq 1) { $AndroidSDKs = $AndroidSDKs[0].Split(",") }
225223
if ($WindowsSDKs.Length -eq 1) { $WindowsSDKs = $WindowsSDKs[0].Split(",") }

0 commit comments

Comments
 (0)