We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1392926 commit c4a472eCopy full SHA for c4a472e
utils/build.ps1
@@ -213,9 +213,11 @@ $WiXVersion = "4.0.6"
213
$UnixToolsBinDir = "$env:SystemDrive\Program Files\Git\usr\bin"
214
215
if ($Android -and ($AndroidSDKs.Length -eq 0)) {
216
- # Enable all android SDKs by default.
217
- $AndroidSDKs = @("aarch64","armv7","i686","x86_64")
+ # By default, build and test the arm64 Android SDK. That choice might change
+ # once we can run executable tests in CI.
218
+ $AndroidSDKs = @("aarch64")
219
}
220
+
221
# Work around limitations of cmd passing in array arguments via powershell.exe -File
222
if ($AndroidSDKs.Length -eq 1) { $AndroidSDKs = $AndroidSDKs[0].Split(",") }
223
if ($WindowsSDKs.Length -eq 1) { $WindowsSDKs = $WindowsSDKs[0].Split(",") }
0 commit comments