-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36d327c
commit 2b7f32f
Showing
4 changed files
with
138 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
|
||
//! Subcommand: cargo xtask check-features | ||
use anyhow::{bail, Context, Result}; | ||
use clap::Parser; | ||
use std::process::Command; | ||
|
||
/// The default version of `cargo-hack` to install. | ||
/// We use a patch-floating version to avoid breaking the build when a new | ||
/// version is released (locally). | ||
const FLOAT_VERSION: &str = "~0.6.28"; | ||
|
||
#[derive(Parser)] | ||
pub struct Args { | ||
#[clap(long)] | ||
exclude_features: Option<Vec<String>>, | ||
#[clap(long)] | ||
depth: Option<usize>, | ||
/// Error format passed to `cargo hack check`. | ||
#[clap(long, value_name = "FMT")] | ||
message_format: Option<String>, | ||
#[clap(long)] | ||
version: Option<String>, | ||
} | ||
|
||
/// Run `cargo hack check`. | ||
pub fn run_cmd(args: Args) -> Result<()> { | ||
install_cargo_hack(args.version).unwrap(); | ||
|
||
let cargo = | ||
std::env::var("CARGO").unwrap_or_else(|_| String::from("cargo")); | ||
let mut command = Command::new(&cargo); | ||
|
||
command.args(&["hack", "check"]); | ||
|
||
if let Some(features) = args.exclude_features { | ||
let ex = format!("--exclude-features={}", features.join(",")); | ||
command.arg(ex); | ||
} | ||
|
||
if let Some(depth) = args.depth { | ||
let depth = format!("depth={}", depth); | ||
command.arg(depth); | ||
} | ||
|
||
// Pass along the `--message-format` flag if it was provided. | ||
if let Some(fmt) = args.message_format { | ||
command.args(["--message-format", &fmt]); | ||
} | ||
|
||
command | ||
// Make sure we check everything. | ||
.arg("--workspace") | ||
.arg("--bins") | ||
// We want to check the feature powerset. | ||
.arg("--feature-powerset") | ||
.arg("--no-dev-deps") | ||
.arg("--exclude-no-default-features"); | ||
|
||
eprintln!( | ||
"running: {:?} {}", | ||
&cargo, | ||
command | ||
.get_args() | ||
.map(|arg| format!("{:?}", arg.to_str().unwrap())) | ||
.collect::<Vec<_>>() | ||
.join(" ") | ||
); | ||
|
||
let exit_status = command | ||
.spawn() | ||
.context("failed to spawn child process")? | ||
.wait() | ||
.context("failed to wait for child process")?; | ||
|
||
if !exit_status.success() { | ||
bail!("check-features failed: {}", exit_status); | ||
} | ||
|
||
Ok(()) | ||
} | ||
|
||
fn install_cargo_hack(version: Option<String>) -> Result<()> { | ||
let cargo = | ||
std::env::var("CARGO").unwrap_or_else(|_| String::from("cargo")); | ||
|
||
let mut command = Command::new(&cargo); | ||
|
||
if let Some(version) = version { | ||
command.args(&["install", "cargo-hack", "--version", &version]); | ||
} else { | ||
command.args(&[ | ||
"install", | ||
"cargo-hack", | ||
"--locked", | ||
"--version", | ||
FLOAT_VERSION, | ||
]); | ||
} | ||
|
||
eprintln!( | ||
"running: {:?} {}", | ||
&cargo, | ||
command | ||
.get_args() | ||
.map(|arg| format!("{:?}", arg.to_str().unwrap())) | ||
.collect::<Vec<_>>() | ||
.join(" ") | ||
); | ||
|
||
let exit_status = command | ||
.spawn() | ||
.expect("failed to spawn child process") | ||
.wait() | ||
.expect("failed to wait for child process"); | ||
|
||
if !exit_status.success() { | ||
bail!("cargo-hack install failed: {}", exit_status); | ||
} | ||
|
||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters