diff options
author | Andrei Vagin <avagin@google.com> | 2021-09-13 15:31:52 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-09-13 15:35:22 -0700 |
commit | 95fe4fea19f30281a3ff53f62c9fcda533c4e04a (patch) | |
tree | 3f2f1f5a70dc4d48d0a6190b97d6810479785cfb /.buildkite | |
parent | e07fd058ec474d801748a849d9c5d1c6118c3c11 (diff) |
tools/show_paths.bzl: check that provider_map isn't None
Otherwise it can fail:
$ bazel cquery pkg/p9/... --output=starlark --starlark:file=tools/show_paths.bzl
...
ERROR: Starlark evaluation error for //pkg/p9/p9test:mockgen:
Traceback (most recent call last):
File "tools/show_paths.bzl", line 8, column 32, in format
Error: 'NoneType' value has no field or method 'get'
PiperOrigin-RevId: 396457764
Diffstat (limited to '.buildkite')
-rw-r--r-- | .buildkite/pipeline.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index c1b478dc3..adff70fee 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -169,6 +169,11 @@ steps: label: ":mechanical_arm: ARM" command: make arm-qemu-smoke-test + # Build everything. + - <<: *common + label: ":world_map: Build everything" + command: "make build OPTIONS=--build_tag_filters=-nogo TARGETS=//..." + # Run basic benchmarks smoke tests (no upload). - <<: *common label: ":fire: Benchmarks smoke test" |