Skip to content

Commit c4a472e

Browse files
utils: Update default Android SDKs in build.ps1 (#79944)
1 parent 1392926 commit c4a472e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

utils/build.ps1

+4-2
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,11 @@ $WiXVersion = "4.0.6"
213213
$UnixToolsBinDir = "$env:SystemDrive\Program Files\Git\usr\bin"
214214

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

0 commit comments

Comments
 (0)