drop COMMIT-QUEUE.ini

Nothing reads this file anymore.

BUG=chromium:1025955
TEST=CQ passes
Exempt-From-Owner-Approval: cleanup removing unused file

Change-Id: I26fea71aae120b294f184b0c1d483ddb22b241b5
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/infra/skylab_inventory/+/2007332
Tested-by: Ross Zwisler <zwisler@google.com>
Auto-Submit: Ross Zwisler <zwisler@google.com>
Reviewed-by: Sean Abraham <seanabraham@chromium.org>
Commit-Queue: Sean Abraham <seanabraham@chromium.org>
1 file changed
tree: 4194f5fecef78c27d3232ab48407d11f72ecd6ab
  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