Yuxuan 'fishy' Wang
Yuxuan 'fishy' Wang
We run a small subset of languages on the CI, the ones implemented uuid use [`ThriftTest.thrift`](https://github.com/apache/thrift/blob/master/test/ThriftTest.thrift) while the ones didn't use the files under [`v0.16`](https://github.com/apache/thrift/tree/master/test/v0.16) which has the uuid fields...
yea I think you are right. I checked go's cross test server and client implementation, the server just response the same uuid it received back to the client, and the...
@larsrc-google yes it hits the same OOM issue if I remove the `build_tools_version` line, and yes it still hits the same OOM issue if I run `bazelisk build --worker_max_instances=2 :debug`...
I tried to add `--verbose_failures` but it doesn't really give me the full raw command it ran, so I still don't know what it actually tried to do. But the...
>when the system doesn't have these resources available? correct, the system does not have 8GB of memory. are those args for desugar worker configurable? as stated in the original bug...
I still have the same issue in latest version of bazel 7 (I use `7.x` in my `.bazelversion` with bazelisk. I cannot use bazel 8 for my android projects yet...
built-in Android rules. I had trouble getting the `android_application` rule from rules_android to work with kotlin (in order to get aab files to submit to Google Play). I don't think...
@fmeum Thanks for the reply! Like I said I tried to reproduce it with a new project with minimal code and failed, so it could totally be that my project...
You mean this file? ```bzl $ cat $(bazel info output_base)/external/gazelle/cmd/gazelle/BUILD.bazel INFO: Invocation ID: 3ff4b260-ac90-4f5d-b8fe-c179cffc31fc load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") load("//:def.bzl", "DEFAULT_LANGUAGES", "gazelle_binary") gazelle_binary( name = "gazelle", languages = DEFAULT_LANGUAGES, visibility = ["//visibility:public"],...
Other things I tried: `find . -name "BUILD.bazel" -delete` to delete all build files, then repopulate the top level one with only: ```bzl load("@gazelle//:def.bzl", "gazelle") gazelle(name = "gazelle") ``` And...