Replies: 1 comment 1 reply
-
The standard way to bootstrap bazel is bazelisk: https://github.com/bazelbuild/bazelisk; it is a lightweight binary that downloads the right version of bazel (depending on what you put In the config for your project) and runs that. Instead of calling bazel, the norm is to just call bazelisk for the operations. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I installed openjdk23-jdk and bash and extracted https://github.com/bazelbuild/bazel/releases/download/7.4.0rc1/bazel-7.4.0rc1-dist.zip. It fails both on alpine linux and a glibc host system... I also tried bazel 8.0.0rc1.
The command I used to build bazel:
env EXTRA_BAZEL_ARGS="--tool_java_runtime_version=local_jdk" bash ./compile.sh
Some of the errors I received:
Additionally theres a warning at the top of the build log:
Is there a way to make it use --release if that is the cause of this issue?
Beta Was this translation helpful? Give feedback.
All reactions