Skip to content

Commit

Permalink
Add save-analysis data to nightly manifests.
Browse files Browse the repository at this point in the history
For use by RLS.
  • Loading branch information
nrc committed Feb 22, 2017
1 parent fc6f092 commit 9ce8bb9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/tools/build-manifest/src/main.rs
Expand Up @@ -215,6 +215,10 @@ impl Builder {
self.package("rust-docs", &mut manifest.pkg, TARGETS);
self.package("rust-src", &mut manifest.pkg, &["*"]);

if self.channel == "rust-nightly" {
self.package("analysis", &mut manifest.pkg, TARGETS);
}

let mut pkg = Package {
version: self.cached_version("rust").to_string(),
target: HashMap::new(),
Expand Down Expand Up @@ -264,6 +268,12 @@ impl Builder {
target: target.to_string(),
});
}
if self.channel == "nightly" {
extensions.push(Component {
pkg: "rust-analysis".to_string(),
target: target.to_string(),
});
}
}
extensions.push(Component {
pkg: "rust-src".to_string(),
Expand Down

0 comments on commit 9ce8bb9

Please sign in to comment.