Skip to content

Commit

Permalink
Add a profiles section to the manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
nrc committed Jan 11, 2019
1 parent c2d381d commit 4103e5b
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ struct Manifest {
manifest_version: String,
date: String,
pkg: BTreeMap<String, Package>,
renames: BTreeMap<String, Rename>
renames: BTreeMap<String, Rename>,
profiles: BTreeMap<String, Vec<String>>,
}

#[derive(Serialize)]
Expand Down Expand Up @@ -340,6 +341,7 @@ impl Builder {
date: self.date.to_string(),
pkg: BTreeMap::new(),
renames: BTreeMap::new(),
profiles: BTreeMap::new(),
};

self.package("rustc", &mut manifest.pkg, HOSTS);
Expand All @@ -355,6 +357,20 @@ impl Builder {
self.package("llvm-tools-preview", &mut manifest.pkg, TARGETS);
self.package("lldb-preview", &mut manifest.pkg, TARGETS);

self.profile("minimal",
&mut manifest.profiles,
&["rustc", "cargo", "rust-std", "rust-mingw"]);
self.profile("default",
&mut manifest.profiles,
&["rustc", "cargo", "rust-std", "rust-mingw",
"rust-docs", "rustfmt-preview", "clippy-preview"]);
self.profile("complete",
&mut manifest.profiles,
&["rustc", "cargo", "rust-std", "rust-mingw",
"rust-docs", "rustfmt-preview", "clippy-preview",
"rls-preview", "rust-src", "llvm-tools-preview",
"lldb-preview", "rust-analysis"]);

manifest.renames.insert("rls".to_owned(), Rename { to: "rls-preview".to_owned() });
manifest.renames.insert("rustfmt".to_owned(), Rename { to: "rustfmt-preview".to_owned() });
manifest.renames.insert("clippy".to_owned(), Rename { to: "clippy-preview".to_owned() });
Expand Down Expand Up @@ -453,6 +469,13 @@ impl Builder {
return manifest;
}

fn profile(&mut self,
profile_name: &str,
dst: &mut BTreeMap<String, Vec<String>>,
pkgs: &[&str]) {
dst.insert(profile_name.to_owned(), pkgs.iter().map(|s| (*s).to_owned()).collect());
}

fn package(&mut self,
pkgname: &str,
dst: &mut BTreeMap<String, Package>,
Expand Down

0 comments on commit 4103e5b

Please sign in to comment.