Skip to content

Commit

Permalink
Merge branch 'master' into set-exec-constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
coeuvre committed Oct 28, 2021
2 parents eaba7a7 + 6b7cab1 commit ba39da9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ platform(
See [here](https://github.com/bazelbuild/bazel-toolchains/blob/dac71231098d891e5c4b74a2078fe9343feef510/rules/exec_properties/exec_properties.bzl#L143)
for a list of parameters accepted by `create_rbe_exec_properties_dict`.

Finally, in your [`.bazelrc`][#bazelrc] file, replace all options specifying a platform target with
Finally, in your `.bazelrc` file, replace all options specifying a platform target with
the above custom platform target instead. So for example, if your `.bazelrc` previously looked like

```bash
Expand Down
4 changes: 2 additions & 2 deletions pkg/rbeconfigsgen/rbeconfigsgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ func workdir(os string) string {
func BazeliskDownloadInfo(os string) (string, string, error) {
switch os {
case OSLinux:
return "https://github.com/bazelbuild/bazelisk/releases/download/v1.7.4/bazelisk-linux-amd64", "bazelisk", nil
return "https://github.com/bazelbuild/bazelisk/releases/download/v1.10.1/bazelisk-linux-amd64", "bazelisk", nil
case OSWindows:
return "https://github.com/bazelbuild/bazelisk/releases/download/v1.7.4/bazelisk-windows-amd64.exe", "bazelisk.exe", nil
return "https://github.com/bazelbuild/bazelisk/releases/download/v1.10.1/bazelisk-windows-amd64.exe", "bazelisk.exe", nil
}
return "", "", fmt.Errorf("invalid OS %q", os)
}
Expand Down

0 comments on commit ba39da9

Please sign in to comment.