-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Store artifact deps in build unit dir #16519
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
Conversation
| } | ||
|
|
||
| #[cargo_test] | ||
| fn artifact_deps() { |
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.
Do we want to also check those environment variables are pointing to the corret directory layout?
(the directory and bin path one maybe?)
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.
ahh good call out, yeah let me include those in the test
b1b2aa0 to
5bf02be
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!
Head branch was pushed to by a user without write access
fdc2b9b to
98bab12
Compare
|
okay, I think I fixed the test failures in CI. but now there is an unrelated failure would you mind re-running the CI jobs? |
|
Still failed |
98bab12 to
67aaf3b
Compare
|
Okay CI is passing now (sorry about that, windows MSVC file paths always get me) |
What does this PR try to resolve?
This spawned out of #16502 (comment) when I noticed artifact dependencies are not using the new build-dir layout.
This PR moves them from
<build-dir>/<profile>/deps/artifact/$pkgname-$META(old layout) to<build-dir>/<profile>/build/$pkgname/$META/deps/artifact/<kind>when-Zbuild-dir-new-layoutis enabled.cc tracking issue: #15010
How to test and review this PR?
Added new test specifically for artifact deps
r? @epage