We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RUN_CHECK_WITH_PARALLEL_QUERIES
1 parent c99f1b7 commit fc6d59dCopy full SHA for fc6d59d
src/ci/run.sh
@@ -157,13 +157,6 @@ trap datecheck EXIT
157
# sccache server at the start of the build, but no need to worry if this fails.
158
SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
159
160
-if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
161
- $SRC/configure --set rust.parallel-compiler
162
- CARGO_INCREMENTAL=0 $PYTHON ../x.py check
163
- rm -f config.toml
164
- rm -rf build
165
-fi
166
-
167
$SRC/configure $RUST_CONFIGURE_ARGS
168
169
retry make prepare
@@ -193,4 +186,11 @@ else
193
186
do_make "$RUST_CHECK_TARGET"
194
187
fi
195
188
189
+if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
190
+ rm -f config.toml
191
+ rm -rf build
192
+ $SRC/configure --set rust.parallel-compiler
+ CARGO_INCREMENTAL=0 $PYTHON ../x.py check
+fi
+
196
sccache --show-stats || true
0 commit comments