Rollup merge of #112291 - sigaloid:master, r=clubby789
Disable RustAnalyzer check by default, run Rustfmt check before Fixes #112287.
This commit is contained in:
commit
0258a16cdc
2 changed files with 2 additions and 2 deletions
|
@ -703,8 +703,8 @@ impl<'a> Builder<'a> {
|
||||||
check::CargoMiri,
|
check::CargoMiri,
|
||||||
check::MiroptTestTools,
|
check::MiroptTestTools,
|
||||||
check::Rls,
|
check::Rls,
|
||||||
check::RustAnalyzer,
|
|
||||||
check::Rustfmt,
|
check::Rustfmt,
|
||||||
|
check::RustAnalyzer,
|
||||||
check::Bootstrap
|
check::Bootstrap
|
||||||
),
|
),
|
||||||
Kind::Test => describe!(
|
Kind::Test => describe!(
|
||||||
|
|
|
@ -347,7 +347,7 @@ pub struct RustAnalyzer {
|
||||||
impl Step for RustAnalyzer {
|
impl Step for RustAnalyzer {
|
||||||
type Output = ();
|
type Output = ();
|
||||||
const ONLY_HOSTS: bool = true;
|
const ONLY_HOSTS: bool = true;
|
||||||
const DEFAULT: bool = true;
|
const DEFAULT: bool = false;
|
||||||
|
|
||||||
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
|
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
|
||||||
run.path("src/tools/rust-analyzer")
|
run.path("src/tools/rust-analyzer")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue