-
-
Notifications
You must be signed in to change notification settings - Fork 655
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
Recognize multiple sentinel files for determining the build root #8105
Recognize multiple sentinel files for determining the build root #8105
Conversation
Blocked by #8063. |
275f951
to
9eec85c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Challenge to landing this...depending on Pretty sure it's impossible to conditionally depend on |
83b4396
to
83bcda1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this is mostly working, so won't block. But I think an API to explicitly set the sentinel value might be cleaner.
7cf30c9
to
d55e04a
Compare
f796562
to
e9de29f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
8661809
to
1977755
Compare
BUILD_ROOT
to determine the build root to fix V2 remote test failures
1977755
to
0d2cea9
Compare
0d2cea9
to
3c3cb9e
Compare
# (e.g., a JDK that is no longer present), or points to the wrong JDK. | ||
if not jdk_home_symlink.exists() or jdk_home_symlink.resolve() != Path(underlying_dist.home): | ||
safe_delete(str(jdk_home_symlink)) # Safe-delete, in case it's a broken symlink. | ||
safe_mkdir_for(jdk_home_symlink) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line was necessary to get ./pants --no-v1 --v2 test tests/python/pants_test/backend/jvm/tasks/jvm_compile
(note this is local execution).
When you include //:build_root
in TestBase
, if you were to run Path.cwd()
at this particular line then it no longer results in the actual build root of /Users/eric/DocsLocal/code/projects/pants
but instead the /Users/eric/DocsLocal/code/projects/pants/.pants.d/process-executionYmgTGM
folder used by V2, which is what we want. As a result, it tries to create the symlink in .pants.d/process-executionYmgTGM/.pants.d
, which does not exist. We add this line to ensure that the parent folder does exist, so that the symlink can be created properly.
# Delete this line to force a full CI run for documentation-only changes. [ci skip] # Documentation-only change. # Delete this line to force a full CI run for documentation-only changes. [ci skip] # Documentation-only change.
3c3cb9e
to
b34e6f9
Compare
BUILD_ROOT
to determine the build root to fix V2 remote test failuresThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have enough context to have an opinion on whether this is the right design, but the code looks correct :)
We cannot have implicit runtime dependencies on files in the buildroot - they must all be declared explicitly via `BUILD` entries. #8066 fixed several of these issues, but not all. However, we cannot explicitly depend on the file `./pants` because it breaks V1 test execution. When running tests with V1, the folder in `.pants.d` will strip the prefix so `src/python/pants` -> `pants`. You cannot both have a directory named `pants` and a file named `pants`, so this causes most V1 tests to fail. Use multiple sentinel files to establish the buildroot, such as `BUILD_ROOT`. This allows us to safely depend on a sentinel file with very few code changes.
Problem
We cannot have implicit runtime dependencies on files in the buildroot - they must all be declared explicitly via
BUILD
entries. #8066 fixed several of these issues, but not all.However, we cannot explicitly depend on the file
./pants
because it breaks V1 test execution. When running tests with V1, the folder in.pants.d
will strip the prefix sosrc/python/pants
->pants
. You cannot both have a directory namedpants
and a file namedpants
, so this causes most V1 tests to fail.Solution
Use multiple sentinel files to establish the buildroot, such as
BUILD_ROOT
. This allows us to safely depend on a sentinel file with very few code changes.