Allow StampWithIjar to use default shell env #8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
When action
StampWithIjar
runs it does not allow environment variables to be passed in using--action_env
command line flag. This can lead to problems whenijar
is executed on systems that have compiled it with a tool chain picked up from the environment but not available on the host system in standard locations.The difference with this change is when
build --action_env=LD_LIBRARY_PATH
or any other--action_env
env flag is passed it will be threaded into the rules_scala action command environment forStampWithIjar
.Motivation
Tool chains that are picked up from the environment on a host are used to compile native code, but that host does not have proper libc libraries to support execution without knowing
LD_LIBRARY_PATH
where shared libraries exist that do contain symbols compiled against.