Fix Go type error

I didn't run the tests/vet because it required entering the chroot,
shame on me.

Also fixed pre-upload stuff.

BUG=None
TEST=None

Change-Id: Iea11d736a5d11db133f29f03555382dd4d366648
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/infra/skylab_inventory/+/1731304
Reviewed-by: Alex Zamorzaev <zamorzaev@chromium.org>
Commit-Queue: Allen Li <ayatane@chromium.org>
Tested-by: Allen Li <ayatane@chromium.org>
8 files changed
tree: 701ac9eb094845cfd43a7801f706270c71289686
  1. bin/
  2. go/
  3. protos/
  4. venv/
  5. .gitignore
  6. COMMIT-QUEUE.ini
  7. OWNERS
  8. PRESUBMIT.cfg
  9. 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