Vertical list of tools to check
This commit is contained in:
parent
94eb176055
commit
82a1328740
1 changed files with 7 additions and 2 deletions
|
|
@ -118,8 +118,13 @@ impl Step for ToolBuild {
|
|||
let mut duplicates = Vec::new();
|
||||
let is_expected = compile::stream_cargo(builder, &mut cargo, &mut |msg| {
|
||||
// Only care about big things like the RLS/Cargo for now
|
||||
if tool != "rls" && tool != "cargo" && tool != "clippy-driver" {
|
||||
return
|
||||
match tool {
|
||||
| "rls"
|
||||
| "cargo"
|
||||
| "clippy-driver"
|
||||
=> {}
|
||||
|
||||
_ => return,
|
||||
}
|
||||
let (id, features, filenames) = match msg {
|
||||
compile::CargoMessage::CompilerArtifact {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue