[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>
1 file changed
tree: 4bcf177e3c505716145ccc86a65f10a3192e49fc
  1. bin/
  2. go/
  3. protos/
  4. venv/
  5. .gitignore
  6. OWNERS
  7. PRESUBMIT.cfg
  8. README.md
README.md

Skylab inventory

Updating inventory schema

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