File tree 1 file changed +5
-14
lines changed
1 file changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,8 @@ if [ "$FORCE_CI_RUSTC" == "" ]; then
54
54
DISABLE_CI_RUSTC_IF_INCOMPATIBLE=1
55
55
fi
56
56
57
- if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || \
58
- isCiBranch automation/bors/try; then
59
- RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
60
- RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set build.metrics"
61
- HAS_METRICS=1
62
- fi
63
-
57
+ RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
58
+ RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set build.metrics"
64
59
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-verbose-configure"
65
60
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-sccache"
66
61
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --disable-manage-submodules"
@@ -266,14 +261,10 @@ if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
266
261
$SRC /configure --set change-id=99999999
267
262
268
263
# Save the build metrics before we wipe the directory
269
- if [ " $HAS_METRICS " = 1 ]; then
270
- mv build/metrics.json .
271
- fi
264
+ mv build/metrics.json .
272
265
rm -rf build
273
- if [ " $HAS_METRICS " = 1 ]; then
274
- mkdir build
275
- mv metrics.json build
276
- fi
266
+ mkdir build
267
+ mv metrics.json build
277
268
278
269
CARGO_INCREMENTAL=0 ../x check
279
270
fi
You can’t perform that action at this time.
0 commit comments