diff --git a/.circleci/config.yml b/.circleci/config.yml index 49c0c6603f4051..321d7fb854a8ef 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -639,9 +639,11 @@ jobs: paths: - C:\Users\circleci\AppData\Local\Yarn + # Try to install the SDK up to 3 times, since network flakiness can cause install failures + # Using a timeout of 9 mins, as circle ci will timeout if there is no output for 10 mins - run: name: Install Android SDK Tools - command: choco install android-sdk + command: choco install android-sdk --timeout 540; if (!$?) { choco install android-sdk --timeout 540 --force --forcedependencies}; if (!$?) { choco install android-sdk --force --forcedependencies} - run: name: Setup Android SDKs