File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -210,11 +210,9 @@ $msbuild = "$VSInstallRoot\MSBuild\Current\Bin\$BuildArchName\MSBuild.exe"
210
210
$UnixToolsBinDir = " $env: SystemDrive \Program Files\Git\usr\bin"
211
211
212
212
if ($Android -and ($AndroidSDKs.Length -eq 0 )) {
213
- # By default, build and test the arm64 Android SDK. That choice might change
214
- # once we can run executable tests in CI.
215
- $AndroidSDKs = @ (" aarch64" )
213
+ # Enable all android SDKs by default.
214
+ $AndroidSDKs = @ (" aarch64" , " armv7" , " i686" , " x86_64" )
216
215
}
217
-
218
216
# Work around limitations of cmd passing in array arguments via powershell.exe -File
219
217
if ($AndroidSDKs.Length -eq 1 ) { $AndroidSDKs = $AndroidSDKs [0 ].Split(" ," ) }
220
218
if ($WindowsSDKs.Length -eq 1 ) { $WindowsSDKs = $WindowsSDKs [0 ].Split(" ," ) }
You can’t perform that action at this time.
0 commit comments