Skip to content

Commit 0258a16

Browse files
Rollup merge of #112291 - sigaloid:master, r=clubby789
Disable RustAnalyzer check by default, run Rustfmt check before Fixes #112287.
2 parents 200d03a + 7ed7e20 commit 0258a16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -703,8 +703,8 @@ impl<'a> Builder<'a> {
703703
check::CargoMiri,
704704
check::MiroptTestTools,
705705
check::Rls,
706-
check::RustAnalyzer,
707706
check::Rustfmt,
707+
check::RustAnalyzer,
708708
check::Bootstrap
709709
),
710710
Kind::Test => describe!(

Diff for: src/bootstrap/check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ pub struct RustAnalyzer {
347347
impl Step for RustAnalyzer {
348348
type Output = ();
349349
const ONLY_HOSTS: bool = true;
350-
const DEFAULT: bool = true;
350+
const DEFAULT: bool = false;
351351

352352
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
353353
run.path("src/tools/rust-analyzer")

0 commit comments

Comments
 (0)