-
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
bootstrap: keep all cargo test files in dist rustc-src #124296
Conversation
Cargo tests use some files that we would otherwise exclude, especially the `cargo init` tests that are meant to deal with pre-existing `.git` and `.hg` repos and their ignore files. Keeping these in our dist tarball doesn't take much space, and allows distro builds to run these tests successfully.
r? @clubby789 rustbot has assigned @clubby789. Use |
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (aa6a8ee): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 673.336s -> 673.585s (0.04%) |
Cargo tests use some files that we would otherwise exclude, especially
the
cargo init
tests that are meant to deal with pre-existing.git
and
.hg
repos and their ignore files. Keeping these in our disttarball doesn't take much space, and allows distro builds to run these
tests successfully.