diff options
author | David Ostrovsky <david@ostrovsky.org> | 2019-06-08 17:33:28 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-06-10 20:44:51 +0200 |
commit | 03f7618fab26409e1a510fd118cf6a6ea7a9e677 (patch) | |
tree | ad96bef4f3943fe363743899adc14c97ef618758 | |
parent | 95de60594ed6fdbc2ac6eaebe114be71c171c038 (diff) | |
download | jgit-03f7618fab26409e1a510fd118cf6a6ea7a9e677.tar.gz jgit-03f7618fab26409e1a510fd118cf6a6ea7a9e677.zip |
Use bazelisk to switch between used bazel version
Bazelisk is utility to switch to the right Bazel version, that we
used to have with Buck build tool: [1].
Bazelisk will download the right Bazel version only once and will use
it in subsequent calls:
$ bazelisk build :release
2019/06/06 16:22:15 Downloading \
https://releases.bazel.build/0.26.1/release/bazel-0.26.1-linux-x86_64...
Bazelisk is storing the binaries in user's cache directory: [2], e.g.
on Linux OS:
$ ls -1 ~/.cache/bazelisk/bin
bazel-0.26.1-linux-x86_64
* [1] https://github.com/bazelbuild/bazelisk
* [2] https://golang.org/pkg/os/#UserCacheDir
Change-Id: Ia9180fb75f8cc17a0a0232622cf33a13bfad6b60
Signed-off-by: David Ostrovsky <david@ostrovsky.org>
-rw-r--r-- | .bazelversion | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.bazelversion b/.bazelversion new file mode 100644 index 0000000000..30f6cf8d98 --- /dev/null +++ b/.bazelversion @@ -0,0 +1 @@ +0.26.1 |