Skip to content

Commit 02103f9

Browse files
committed
Auto merge of #9393 - ehuss:build-std-updating, r=alexcrichton
Fix build-std updating the index on every build. rust-lang/rust#83776 has caused a problem where build-std will update the index on every build. That PR added `std_detect` from the `stdarch` submodule as a path dependency of `std`. However, since `stdarch` has a workspace of its own, an exclusion had to be added to `Cargo.toml` so that it does not treat `std_detect` as a workspace member (because nested workspaces are not supported). The problem is that the std `Cargo.lock` file is built thinking that `std_detect` is *not* a workspace member. This means that its dev-dependencies are not included. However, when cargo resolves the std workspace, it doesn't know that `std_detect` should be excluded, so it considers it a workspace member (because it is a path dependency). This means that it expects the dev-dependencies to be in Cargo.lock. Because they are missing, it ends up poisoning the registry and triggering an update: > poisoning registry `https://github.com/rust-lang/crates.io-index` because std_detect v0.1.5 (/Users/eric/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/src/rust/library/stdarch/crates/std_detect) looks like it changed auxv The solution here is to skip dev-dependencies if they are not actively being resolved, even if the package is a workspace member. This has happened before (#8962), so I have updated the test to check for it. There are some alternative solutions I considered: * Add support for nested workspaces. 😄 * Use a symlink to `std_detect` in the `rust-lang/rust` repository so that it appears to cargo as-if it is "outside" of the stdarch workspace, and thus can be treated like a normal workspace member (and remove the "exclude"). That seems a little hacky. Fixes #9390
2 parents a85ae1a + 3b7cb69 commit 02103f9

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

src/cargo/ops/resolve.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,13 @@ pub fn resolve_with_previous<'cfg>(
291291

292292
let keep = |p: &PackageId| pre_patch_keep(p) && !avoid_patch_ids.contains(p);
293293

294+
let dev_deps = ws.require_optional_deps() || has_dev_units == HasDevUnits::Yes;
294295
// In the case where a previous instance of resolve is available, we
295296
// want to lock as many packages as possible to the previous version
296297
// without disturbing the graph structure.
297298
if let Some(r) = previous {
298299
trace!("previous: {:?}", r);
299-
register_previous_locks(ws, registry, r, &keep);
300+
register_previous_locks(ws, registry, r, &keep, dev_deps);
300301
}
301302
// Everything in the previous lock file we want to keep is prioritized
302303
// in dependency selection if it comes up, aka we want to have
@@ -320,7 +321,6 @@ pub fn resolve_with_previous<'cfg>(
320321
registry.add_sources(Some(member.package_id().source_id()))?;
321322
}
322323

323-
let dev_deps = ws.require_optional_deps() || has_dev_units == HasDevUnits::Yes;
324324
let summaries: Vec<(Summary, ResolveOpts)> = ws
325325
.members_with_features(specs, cli_features)?
326326
.into_iter()
@@ -455,6 +455,7 @@ fn register_previous_locks(
455455
registry: &mut PackageRegistry<'_>,
456456
resolve: &Resolve,
457457
keep: &dyn Fn(&PackageId) -> bool,
458+
dev_deps: bool,
458459
) {
459460
let path_pkg = |id: SourceId| {
460461
if !id.is_path() {
@@ -564,6 +565,11 @@ fn register_previous_locks(
564565
continue;
565566
}
566567

568+
// If dev-dependencies aren't being resolved, skip them.
569+
if !dep.is_transitive() && !dev_deps {
570+
continue;
571+
}
572+
567573
// If this is a path dependency, then try to push it onto our
568574
// worklist.
569575
if let Some(pkg) = path_pkg(dep.source_id()) {

tests/build-std/main.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,16 @@ fn basic() {
105105
.build();
106106

107107
p.cargo("check").build_std().target_host().run();
108-
p.cargo("build").build_std().target_host().run();
108+
p.cargo("build")
109+
.build_std()
110+
.target_host()
111+
// Importantly, this should not say [UPDATING]
112+
// There have been multiple bugs where every build triggers and update.
113+
.with_stderr(
114+
"[COMPILING] foo v0.0.1 [..]\n\
115+
[FINISHED] dev [..]",
116+
)
117+
.run();
109118
p.cargo("run").build_std().target_host().run();
110119
p.cargo("test").build_std().target_host().run();
111120

0 commit comments

Comments
 (0)