-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pw_env_setup: Get bazelisk instead of bazel
Get bazelisk-as-bazel instead of bazel in environment setup. This is a Bazelisk executable named 'bazel', so it's a drop-in replacement for Bazel. Bug: 355438774 Change-Id: I30075031ce3d5eb12cd5af9305d7404c28fd790d Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/226376 Reviewed-by: Armando Montanez <[email protected]> Commit-Queue: Rob Mohr <[email protected]> Reviewed-by: Keir Mierle <[email protected]> Presubmit-Verified: CQ Bot Account <[email protected]> Reviewed-by: Wyatt Hepler <[email protected]> Lint: Lint 🤖 <[email protected]>
- Loading branch information
Showing
5 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"included_files": [ | ||
"buildifier.json" | ||
"buildifier.json", | ||
"openjdk.json" | ||
], | ||
"packages": [ | ||
{ | ||
|
@@ -15,18 +16,6 @@ | |
"version:[email protected]" | ||
], | ||
"version_file": ".versions/bazel.version" | ||
}, | ||
{ | ||
"path": "flutter/java/openjdk/${platform}", | ||
"platforms": [ | ||
"linux-amd64", | ||
"mac-amd64", | ||
"mac-arm64", | ||
"windows-amd64" | ||
], | ||
"tags": [ | ||
"version:17" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"included_files": [ | ||
"buildifier.json", | ||
"openjdk.json" | ||
], | ||
"packages": [ | ||
{ | ||
"path": "fuchsia/third_party/bazelisk-as-bazel/${platform}", | ||
"platforms": [ | ||
"linux-amd64", | ||
"mac-amd64", | ||
"mac-arm64", | ||
"windows-amd64" | ||
], | ||
"tags": [ | ||
"version:[email protected]" | ||
], | ||
"version_file": ".versions/bazelisk-as-bazel.version" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"packages": [ | ||
{ | ||
"path": "flutter/java/openjdk/${platform}", | ||
"platforms": [ | ||
"linux-amd64", | ||
"mac-amd64", | ||
"mac-arm64", | ||
"windows-amd64" | ||
], | ||
"tags": [ | ||
"version:17" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"included_files": [ | ||
"bazel.json", | ||
"bazelisk.json", | ||
"cmake.json", | ||
"coverage.json", | ||
"default.json", | ||
|