File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -1185,7 +1185,11 @@ impl Config {
1185
1185
1186
1186
fn search_perf_builds ( & self , toolchain : & Toolchain ) -> anyhow:: Result < BisectionResult > {
1187
1187
eprintln ! ( "Attempting to search unrolled perf builds" ) ;
1188
- let Toolchain { spec : ToolchainSpec :: Ci { commit, .. } , ..} = toolchain else {
1188
+ let Toolchain {
1189
+ spec : ToolchainSpec :: Ci { commit, .. } ,
1190
+ ..
1191
+ } = toolchain
1192
+ else {
1189
1193
bail ! ( "not a ci commit" ) ;
1190
1194
} ;
1191
1195
let summary = get_commit ( commit) ?. summary ;
@@ -1231,7 +1235,9 @@ impl Config {
1231
1235
. collect :: < Vec < _ > > ( ) ;
1232
1236
1233
1237
let Some ( found) = toolchains. iter ( ) . position ( |t| {
1234
- self . install_and_test ( t, & dl_spec) . unwrap_or ( Satisfies :: Unknown ) == Satisfies :: Yes
1238
+ self . install_and_test ( t, & dl_spec)
1239
+ . unwrap_or ( Satisfies :: Unknown )
1240
+ == Satisfies :: Yes
1235
1241
} ) else {
1236
1242
bail ! ( "none of the toolchains satisfied the predicate" ) ;
1237
1243
} ;
You can’t perform that action at this time.
0 commit comments