commit | 2c7da05ef3316188854d9b915b665a54959d8415 | [log] [tgz] |
---|---|---|
author | Anushruth S <anushruth@google.com> | Mon Jul 10 21:32:47 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jul 10 21:32:47 2023 |
tree | 651168221d356f62aec5c5235b763d9622437634 | |
parent | b1c1d846fa725e9c53c0c10592d425a855628b3c [diff] |
[WIB] Bug fixes to support generating aarch64 isos These changes help generating bootable isos for aarch64 by fixing the bootloader to boot from. Change-Id: I2613aaf2c821d405b4f7d39462168c7ba4c388e1 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/4676164 Commit-Queue: Anushruth Sasivehalli <anushruth@chromium.org> Reviewed-by: Adam Todd <actodd@google.com> Cr-Commit-Position: refs/heads/main@{#58078}
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>:deployed
git 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.