Add option to skip boot property check in RetrySetupAdb This change updates `RetrySetupAdb` to accept a variadic boolean parameter to optionally skip the Android boot property check (`sys.boot_completed`). When provisioning GKI (Generic Kernel Image) instances, verifying basic ADB reachability is sufficient and preferable to waiting for full boot properties, which may differ in that environment. - Update `RetrySetupAdb` signature to accept `opts ...bool`. - If `opts[0]` is true, return immediately after ADB setup without running `IsBootCompleted`. - Update `checkADB` wrapper to propagate these options. - Enable this skip logic in `FullOSImageState` specifically for GKI instances. Changes: Bug: 468016611 Test: go build <services> Change-Id: I9cc96bba9243e181426f71ff332dd6dfd669d1a6 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/7489703 Auto-Submit: Jae Hoon Kim <kimjae@chromium.org> Reviewed-by: Garry Wang <xianuowang@chromium.org> Reviewed-by: Chris DeLaGarza <cdelagarza@google.com> Commit-Queue: Chris DeLaGarza <cdelagarza@google.com> Cr-Commit-Position: refs/heads/main@{#78459}
Welcome to the Chrome Infra repository!
Wondering where to start? Check out General Chrome Infrastructure documentation. In particular, to check out this repo and the rest of the infrastructure code, follow the instructions here. The rest of this page is specific to this repo.
sys.path modifications.git push origin <updated hash>:deployedgit push commandIf you've added a new module, run your tests with test.py:
*_test.py files to this directory.Double-check that your tests are getting picked up when you want them to be: ./test.py test <path-to-package>.
Tests still not getting picked up by test.py? Double-check to make sure you have __init__.py files in each directory of your module so Python recognizes it as a package.
The preferred style is PEP8 with two-space indent; that is, the Chromium Python style, except functions use lowercase_with_underscores. Use yapf (git cl format) to autoformat new code.