From 8d33c099c6a7bdd13ba621415f6114e786acf4d6 Mon Sep 17 00:00:00 2001 From: Arnavion Date: Fri, 24 Feb 2017 01:28:28 -0800 Subject: [PATCH] Add rust-analysis manifest Originally in buildbot as https://github.com/rust-lang/rust-buildbot/commit/f92708e72446abf35b5e98c020ffa50b8705014b and https://github.com/rust-lang/rust-buildbot/commit/d7235e8d60da4ef5f37aa9967c6cf79d6bd0cc06 --- src/tools/build-manifest/src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index 991cd02d215dc..2356b4219b2a0 100644 --- a/src/tools/build-manifest/src/main.rs +++ b/src/tools/build-manifest/src/main.rs @@ -270,6 +270,15 @@ impl Builder { target: "*".to_string(), }); + if self.channel == "nightly" { + for target in TARGETS { + extensions.push(Component { + pkg: "rust-analysis".to_string(), + target: target.to_string(), + }); + } + } + pkg.target.insert(host.to_string(), Target { available: true, url: Some(self.url("rust", host)),