| commit | 8dffa963305691191176ce04fa7b2a91107e7a46 | [log] [tgz] |
|---|---|---|
| author | Owners Cleanup <swarming-tasks@owners-cleanup-prod.google.com.iam.gserviceaccount.com> | Tue Apr 08 14:12:25 2025 |
| committer | Allen Li <[email protected]> | Fri Apr 18 20:21:14 2025 |
| tree | 4bcf177e3c505716145ccc86a65f10a3192e49fc | |
| parent | 9ec4792e62cc13ceb37084e3e0de6285cb623ef5 [diff] |
[owners] Remove [email protected] from OWNERS This suggested change is automatically generated based on group memberships and affiliations. Please approve this change and vote the highest CR. This will keep the OWNERs file tidy. We ask that you do not ignore this change and approve it unless you know a reason the OWNER should remain. It can always be reverted if needed. If this change is in error, vote the lowest CR value (i.e. reject the CL) and the bot will abandon it. See the owner's recent review activity for context: https://chromium-review.googlesource.com/q/[email protected] To report an issue, file a bug in the Infra>Codereview component. Change-Id: I2dd03fff9bc8ccb3e7f2483c6f2ef4dfbb43b1ee Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/infra/skylab_inventory/+/6440964 Reviewed-by: Allen Li <[email protected]> Tested-by: Allen Li <[email protected]> Auto-Submit: Owners Cleanup <swarming-tasks@owners-cleanup-prod.google.com.iam.gserviceaccount.com>
Inventory schema is stored as protobuf definitions in the proto/ directory. When you update these protobuf definitions, you must also update the generated python libraries for them.
You need the protoc compiler for this. On gLinux:
sudo apt-get install protobuf-compiler go get github.com/golang/protobuf/protoc-gen-go
Then, regenerate the libraries inside the chroot:
cros_sdk (cr) cd ~/trunk/infra/skylab_inventory/protos (cr) protoc --python_out=../venv/skylab_inventory/protos/ *.proto (cr) protoc --go_out=../go/src/chromiumos/infra/skylab/inventory/protos/ *.proto