forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.rs
50 lines (39 loc) · 1.11 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use std::process::Command;
use anyhow::Result;
use clap::Args;
use crate::app::CommandExt as _;
use crate::platform;
/// Build Vector
#[derive(Args, Debug)]
#[command()]
pub struct Cli {
/// The build target e.g. x86_64-unknown-linux-musl
target: Option<String>,
/// Build with optimizations
#[arg(short, long)]
release: bool,
/// The feature to activate (multiple allowed)
#[arg(short = 'F', long)]
feature: Vec<String>,
}
impl Cli {
pub fn exec(self) -> Result<()> {
let mut command = Command::new("cargo");
command.in_repo();
command.args(["build", "--no-default-features"]);
if self.release {
command.arg("--release");
}
command.arg("--features");
if self.feature.is_empty() {
command.arg(platform::default_features());
} else {
command.arg(self.feature.join(","));
}
let target = self.target.unwrap_or_else(platform::default_target);
command.args(["--target", &target]);
waiting!("Building Vector");
command.check_run()?;
Ok(())
}
}