Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document effect of --incompatible_strict_action_env on autodetecting the Python interpreter #6817

Closed
mboes opened this issue Dec 2, 2018 · 5 comments
Labels
P4 This is either out of scope or we don't have bandwidth to review a PR. (No assignee) stale Issues or PRs that are stale (no activity for 30 days) team-Documentation Documentation improvements that cannot be directly linked to other team labels team-Rules-Python Native rules for Python type: documentation (cleanup)

Comments

@mboes
Copy link
Contributor

mboes commented Dec 2, 2018

Description of the problem

Assume the following:

py_binary(
    name = "cmd",
    srcs = ["cmd.py"],
)

Now let's say that some rule foo's implementation has as one its actions to execute the cmd.py. While bazel run //:cmd works, executing cmd.py as part of an action, surprisingly, does not always work. The reason is that the python_binary rule will create a stub based on python_stub_template.txt, but the first line of this stub grabs whatever python is on the PATH. If --experimental_strict_action_env is turned on, then this might not be the intended python. In fact it's not even guaranteed that a python exists.

Consider the following scenario: PATH=/bin:/usr/bin:/usr/local/bin and python installed in /usr/local/bin. The rule action in the implementation of foo will fail, because python is not in the PATH that --experimental_strict_action_env uses (hardcoded to /bin:/usr/bin).

Bugs: what's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.

$ hub clone tweag/rules_haskell
$ cd rules_haskell
$ nix-shell
$ bazel build --experimental_strict_action

What operating system are you running Bazel on?

NixOS

What's the output of bazel info release?

bazel v0.18

@brandjon
Copy link
Member

brandjon commented Jan 4, 2019

See also #7026.

The stub script uses the interpreter specified by the py_runtime pointed to by --python_top. If there is no such py_runtime, it defaults to the value of --python_path, which itself defaults to the command string "python".

The long-term solution is for us to create a py_toolchain rule (effectively acting as py_runtime) and a repository rule to automatically define/register a suitable toolchain based on a path lookup at workspace evaluation time. That way, we won't care what the PATH is at action execution time.

In the meantime, you can specify --python_top in your build and point it to a py_runtime with an interpreter_path value appropriate for your system.

@brandjon brandjon added type: feature request P3 We're not considering working on this, but happy to review a PR. (No assignee) and removed untriaged labels Jan 4, 2019
@brandjon
Copy link
Member

Just an update on how this would work with toolchains (#7375): There'll be a default Python toolchain that autodetects the Python interpreter on the system at execution time based on PATH. So if the strict action environment restricts PATH such that no suitable interpreter can be found, it'll continue to fail in this way. The solution is then to not rely on the default Python toolchain, but rather register your own one that knows what the correct absolute path to the runtime is on the target platform.

Under that system, this behavior is WAI and it's just a matter of documenting the effect of --experimental_strict_action_env on the autodetecting toolchain.

@brandjon brandjon changed the title Make executing python scripts work with --experimental_strict_action_env Document effect of --experimental_strict_action_env on autodetecting the Python interpreter Mar 14, 2019
@brandjon
Copy link
Member

See #8536 for interference between the strict action env and the autodetecting toolchain.

@brandjon brandjon changed the title Document effect of --experimental_strict_action_env on autodetecting the Python interpreter Document effect of --incompatible_strict_action_env on autodetecting the Python interpreter Jun 11, 2019
@lberki lberki added P4 This is either out of scope or we don't have bandwidth to review a PR. (No assignee) and removed P3 We're not considering working on this, but happy to review a PR. (No assignee) labels Nov 18, 2020
@sgowroji sgowroji added the team-Documentation Documentation improvements that cannot be directly linked to other team labels label Jan 11, 2023
Copy link

Thank you for contributing to the Bazel repository! This issue has been marked as stale since it has not had any activity in the last 1+ years. It will be closed in the next 90 days unless any other activity occurs. If you think this issue is still relevant and should stay open, please post any comment here and the issue will no longer be marked as stale.

@github-actions github-actions bot added the stale Issues or PRs that are stale (no activity for 30 days) label Mar 17, 2024
Copy link

This issue has been automatically closed due to inactivity. If you're still interested in pursuing this, please post @bazelbuild/triage in a comment here and we'll take a look. Thanks!

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Jun 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
P4 This is either out of scope or we don't have bandwidth to review a PR. (No assignee) stale Issues or PRs that are stale (no activity for 30 days) team-Documentation Documentation improvements that cannot be directly linked to other team labels team-Rules-Python Native rules for Python type: documentation (cleanup)
Projects
None yet
Development

No branches or pull requests

5 participants