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"
210210$UnixToolsBinDir = " $env: SystemDrive \Program Files\Git\usr\bin"
211211
212212if ($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" )
216215}
217-
218216# Work around limitations of cmd passing in array arguments via powershell.exe -File
219217if ($AndroidSDKs.Length -eq 1 ) { $AndroidSDKs = $AndroidSDKs [0 ].Split(" ," ) }
220218if ($WindowsSDKs.Length -eq 1 ) { $WindowsSDKs = $WindowsSDKs [0 ].Split(" ," ) }
You can’t perform that action at this time.
0 commit comments