Skip to content

Commit 2dc3286

Browse files
committed
Switch to Bazelisk.
1 parent 9a87e0a commit 2dc3286

File tree

4 files changed

+13
-41
lines changed

4 files changed

+13
-41
lines changed

.bazelversion

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6.4.0

.github/workflows/build.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

24-
- name: Install bazel
25-
run: tools/install_deps.sh
24+
- name: Mount bazel cache
25+
uses: actions/cache@v3
26+
with:
27+
path: "~/.cache/bazel"
28+
key: bazel
2629

2730
- name: Run tests
2831
run: tools/run_tests.sh

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ with [Bazel](https://bazel.build).
1717
Setup
1818
-----
1919

20+
Make sure Bazel is installed on your system. See the [Bazel
21+
documentation](https://docs.bazel.build/versions/master/install.html) for
22+
platform-specific instructions. We recommend using [Bazelisk](
23+
https://bazel.build/install/bazelisk.html) to ensure you are using a supported
24+
version.
25+
2026
To use the Dart rules, add the following to your `WORKSPACE` file to add the
2127
external repositories for the Dart toolchain:
2228

tools/install_deps.sh

-38
This file was deleted.

0 commit comments

Comments
 (0)