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 @@ -215,11 +215,9 @@ $msbuild = "$VSInstallRoot\MSBuild\Current\Bin\$BuildArchName\MSBuild.exe"
215215$UnixToolsBinDir = " $env: SystemDrive \Program Files\Git\usr\bin"
216216
217217if ($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
224222if ($AndroidSDKs.Length -eq 1 ) { $AndroidSDKs = $AndroidSDKs [0 ].Split(" ," ) }
225223if ($WindowsSDKs.Length -eq 1 ) { $WindowsSDKs = $WindowsSDKs [0 ].Split(" ," ) }
You can’t perform that action at this time.
0 commit comments