- @local_execution_config_platform: local platform to allow selecting locally executed tools on - @local_execution_config_python: python configured for execution on the local machine during otherwise remote builds Mark rules that are required to run locally to require our local platform. This allows python paths to differ between the remote docker image and local machine. For example, the local machine might have python 3.7 installed in /usr/bin/python3, while the remote docker should use a python installed in /usr/local/bin/python3.8. PiperOrigin-RevId: 307585019 Change-Id: I29313121beb967b77ae123e7d1b614c688cb40ca
9 lines
199 B
Smarty
9 lines
199 B
Smarty
platform(
|
|
name = "platform",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//platforms:%{platform}",
|
|
],
|
|
exec_properties = %{exec_properties},
|
|
)
|