Skip to content

Commit

Permalink
Add toolchain=None to shell actions.
Browse files Browse the repository at this point in the history
This prepares us for bazel-head. We still need to bump used rules (e.g. rules_oci) when they ship a fix.

See #451.
  • Loading branch information
ensonic committed Oct 9, 2024
1 parent 7f64d95 commit 4895f63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions bazel/app_chart.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def _impl(ctx):
outputs = [values_yaml],
inputs = ctx.files.values + source_digests,
command = "\n".join(cmds),
toolchain = None,
)

helm_chart(
Expand Down
1 change: 1 addition & 0 deletions bazel/build_rules/helm_chart.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ def helm_chart(ctx, name, chart, files, templates, values, version, helm, out):
tools = [helm],
outputs = [out],
command = cmd,
toolchain = None,
)

0 comments on commit 4895f63

Please sign in to comment.