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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
use std::{any::Any, process::Command};
use crate::{
args::{EnvArgs, PackageArgs},
config::Config,
process::CommandExt,
Result, Run,
};
/// Arguments definition of the `sync-rdme` subcommand.
#[cfg_attr(doc, doc = include_str!("../../doc/cargo-xtask-sync-rdme.md"))]
#[derive(Debug, Clone, Default, clap::Args)]
#[non_exhaustive]
pub struct SyncRdme {
/// Environment variables to set for `cargo sync-rdme`.
#[clap(flatten)]
pub env_args: EnvArgs,
/// Packages to run the `cargo sync-rdme` with.
#[clap(flatten)]
pub package_args: PackageArgs,
/// Options to pass to the `cargo sync-rdme`
pub extra_options: Vec<String>,
}
impl Run for SyncRdme {
fn run(&self, config: &Config) -> Result<()> {
self.run(config)
}
fn into_any(self: Box<Self>) -> Box<dyn Any> {
self
}
fn as_any(&self) -> &dyn Any {
self
}
fn as_any_mut(&mut self) -> &mut dyn Any {
self
}
}
impl SyncRdme {
/// Runs the `sync-rdme` subcommand.
#[tracing::instrument(name = "sync-rdme", skip_all, err)]
pub fn run(&self, _config: &Config) -> Result<()> {
let Self {
env_args,
package_args,
extra_options,
} = self;
for res in package_args.packages() {
let (workspace, package) = res?;
// rustup run nightly cargo sync-rdme <extra_options>
// `cargo +nightly sync-rdme` fails on windows, so use rustup instead
// cargo sync-rdme <extra_options>
Command::new("rustup")
.args([
"run",
"nightly",
"cargo",
"sync-rdme",
"--package",
&package.name,
"--all-features",
])
.args(extra_options)
.envs(env_args.env.clone())
// workaround: on windows, `cargo sync-rdme` fails for some packages with following error:
// error[E0514]: found crate `<crate>` compiled by an incompatible version of rustc
.env(
"CARGO_TARGET_DIR",
workspace.target_directory.join("nightly").as_str(),
)
.workspace_spawn(workspace)?;
}
Ok(())
}
}