-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
rustbuild: There are two tmp/ directories #34586
Comments
More on rustbuild: https://internals.rust-lang.org/t/the-rustbuild-feature-thread/3643/ |
I seem to recall seeing a tmp directory inside build, but I can't seem to recreate it now. Maybe it only appears temporarily during some particular steps and I've deleted it. @alexcrichton What do you see as the steps for removing the tmp directory inside build/? Or is the solution to leave that and move the tmp directory created in the root into the build/ directory? |
I'd advocate to move the root tmp directory into the build/ directory, personally. The strategy here is to track down what's creating that dir (I'm not sure myself) and just update it to all use the build/ dir |
Doesn't seem to be case anymore, |
Perhaps |
@rustbot claim Indeed |
This directory is created by I'll have PR soon. |
cc #63429 (re-adds the outer |
When doing a build with rustbuild, it turns out that two tmp/ dirs end up being created. One is in the
build/
directory that rustbuild owns, and one is in the current directory (next to thebuild
directory). The one next to thebuild
directory contains some information for partitioning tests and information about the error index. Both of these shouldn't exist and their output should be in the rustbuild build/ directory.The text was updated successfully, but these errors were encountered: