mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 12:20:56 +00:00
Lint with DEFMT_LOG=trace (#3595)
This commit is contained in:
parent
3cd36062d4
commit
b6ba222dec
@ -4,14 +4,14 @@ use std::{
|
||||
time::Instant,
|
||||
};
|
||||
|
||||
use anyhow::{Result, bail};
|
||||
use anyhow::{bail, Result};
|
||||
use clap::{Args, Parser};
|
||||
use esp_metadata::{Chip, Config};
|
||||
use strum::IntoEnumIterator;
|
||||
use xtask::{
|
||||
Package,
|
||||
cargo::{CargoAction, CargoArgsBuilder},
|
||||
commands::*,
|
||||
Package,
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -275,7 +275,12 @@ fn lint_package(
|
||||
|
||||
let cargo_args = builder.build();
|
||||
|
||||
xtask::cargo::run_with_env(&cargo_args, &path, [("CI", "1")], false)?;
|
||||
xtask::cargo::run_with_env(
|
||||
&cargo_args,
|
||||
&path,
|
||||
[("CI", "1"), ("DEFMT_LOG", "trace")],
|
||||
false,
|
||||
)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user