Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
89845: bazci: stream test results r=healthy-pod a=rickystewart

Have `bazci` start a [build event service](https://bazel.build/remote/bep)
to monitor the build, rather than parsing the `bep` log at the end of
the build. This gives us better behavior in CI, as test results can
"stream" instead of requiring us to wait until all tests have completed
to report.

Release note: None
Epic CRDB-15060

89916: insights: tune allocations, fix benchmark r=matthewtodd a=ajwerner

See individual commits.

Epic: None

Release note: None

90105: packer: update ARM agents AMI volume size r=rickystewart a=healthy-pod

Release note: None
Epic: DEVINF-443

Co-authored-by: Ricky Stewart <[email protected]>
Co-authored-by: Andrew Werner <[email protected]>
Co-authored-by: healthy-pod <[email protected]>
  • Loading branch information
4 people committed Oct 18, 2022
4 parents b2b8d10 + 6116154 + 6ed0eb1 + abad960 commit 081f108
Show file tree
Hide file tree
Showing 16 changed files with 365 additions and 185 deletions.
2 changes: 1 addition & 1 deletion build/packer/teamcity-agent-arm.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"ssh_timeout": "10m",
"ami_block_device_mappings": {
"device_name": "/dev/sda1",
"volume_size": "120",
"volume_size": "256",
"volume_type": "gp2",
"delete_on_termination": true
},
Expand Down
18 changes: 18 additions & 0 deletions build/patches/go_googleapis.patch
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,21 @@ diff -urN a/google/cloud/kms/v1/BUILD.bazel b/google/cloud/kms/v1/BUILD.bazel
+ "@org_golang_google_genproto//protobuf/field_mask:go_default_library",
+ ],
)
diff -urN a/google/devtools/build/v1/BUILD.bazel a/google/devtools/build/v1/BUILD.bazel
--- a/google/devtools/build/v1/BUILD.bazel 1970-01-01 00:00:00.000000000 +0000
+++ b/google/devtools/build/v1/BUILD.bazel 2000-01-01 00:00:00.000000000 -0000
@@ -25,5 +25,13 @@
importpath = "google.golang.org/genproto/googleapis/devtools/build/v1",
proto = ":build_proto",
visibility = ["//visibility:public"],
- deps = ["//google/api:annotations_go_proto"],
+ deps = [
+ "@com_github_golang_protobuf//ptypes/any:go_default_library",
+ "@com_github_golang_protobuf//ptypes/duration:go_default_library",
+ "@com_github_golang_protobuf//ptypes/empty:go_default_library",
+ "@com_github_golang_protobuf//ptypes/timestamp:go_default_library",
+ "@com_github_golang_protobuf//ptypes/wrappers:go_default_library",
+ "@org_golang_google_genproto//googleapis/api/annotations:go_default_library",
+ "@org_golang_google_genproto//protobuf/field_mask:go_default_library",
+ ],
)
5 changes: 4 additions & 1 deletion pkg/cmd/bazci/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ go_library(
"//pkg/cmd/bazci/testfilter",
"@com_github_alessio_shellescape//:shellescape",
"@com_github_cockroachdb_errors//:errors",
"@com_github_gogo_protobuf//proto",
"@com_github_gogo_protobuf//types",
"@com_github_spf13_cobra//:cobra",
"@go_googleapis//google/devtools/build/v1:build_go_proto",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_protobuf//types/known/emptypb",
],
)

Expand Down
Loading

0 comments on commit 081f108

Please sign in to comment.