-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to bazel 0.25.1 #2744
Update to bazel 0.25.1 #2744
Conversation
Linux and Windows builds still hit bazel errors apparently. |
b3ba4ed
to
42ba19d
Compare
It's all green expect on Windows:
I can't spot reference to 'androidsdk' in your changes, so maybe it's just Kokoro being flaky? I'll start a new kokoro build to see if it goes through. |
Now builds with go 1.12 (https://golang.org/doc/go1.12) which should result in better GC performance and memory usage.
- Get rid of our override BUILD file. - But, use our own way of defining the deps, but trim them down - Clean up the grpc proto code generation rules. I removed the TODO, as I don't think it's worth doing anymore.
This build file is symlinked into the local_cc_config workspace and only works there.
The go compiler requires about 8GB of RAM for the GLES and Vulkan packages. Since they often get built together at the same time, the build machine would run out of memory.
@@ -1,6 +1,6 @@ | |||
# Building GAPID | |||
|
|||
GAPID uses the [Bazel build system](https://bazel.build/). The current minimum required version of bazel is 0.18.1. | |||
GAPID uses the [Bazel build system](https://bazel.build/). The current minimum required version of bazel is 0.25.1. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gross big jump. But I assume its basically impossible to avoid.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reality is that we were building with 0.20 before, but yeah, we should keep up with it a bit more.
No description provided.