Skip to content

Commit 07493dd

Browse files
Temporarily avoid errors on RLS failure in parallel
1 parent 95cf544 commit 07493dd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/bootstrap/dist.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,12 @@ impl Step for Rls {
10231023
let rls = builder
10241024
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
10251025
.or_else(|| {
1026+
if builder.config.rustc_parallel {
1027+
// FIXME: Disable RLS on parallel builds, cannot build due
1028+
// to upstream trouble. See
1029+
// https://github.com/racer-rust/racer/pull/1177.
1030+
return None;
1031+
}
10261032
missing_tool("RLS", builder.build.config.missing_tools);
10271033
None
10281034
})?;

0 commit comments

Comments
 (0)