Skip to content

Commit 2aa68ac

Browse files
committed
Remove RUN_CHECK_WITH_PARALLEL_QUERIES
It is useless after the removal of the parallel compiler configuration.
1 parent f7b4354 commit 2aa68ac

File tree

4 files changed

+0
-17
lines changed

4 files changed

+0
-17
lines changed

src/ci/docker/host-aarch64/aarch64-gnu-debug/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ COPY scripts/sccache.sh /scripts/
3030
RUN sh /scripts/sccache.sh
3131

3232
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
33-
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
3433

3534
# llvm.use-linker conflicts with downloading CI LLVM
3635
ENV NO_DOWNLOAD_CI_LLVM 1

src/ci/docker/host-x86_64/mingw-check/Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ COPY host-x86_64/mingw-check/check-default-config-profiles.sh /scripts/
4141
COPY host-x86_64/mingw-check/validate-toolstate.sh /scripts/
4242
COPY host-x86_64/mingw-check/validate-error-codes.sh /scripts/
4343

44-
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
45-
4644
# Check library crates on all tier 1 targets.
4745
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
4846
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.

src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ COPY scripts/sccache.sh /scripts/
3030
RUN sh /scripts/sccache.sh
3131

3232
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
33-
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
3433

3534
# llvm.use-linker conflicts with downloading CI LLVM
3635
ENV NO_DOWNLOAD_CI_LLVM 1

src/ci/run.sh

-13
Original file line numberDiff line numberDiff line change
@@ -260,19 +260,6 @@ else
260260
do_make "$RUST_CHECK_TARGET"
261261
fi
262262

263-
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
264-
rm -f config.toml
265-
$SRC/configure --set change-id=99999999
266-
267-
# Save the build metrics before we wipe the directory
268-
mv build/metrics.json .
269-
rm -rf build
270-
mkdir build
271-
mv metrics.json build
272-
273-
CARGO_INCREMENTAL=0 ../x check
274-
fi
275-
276263
echo "::group::sccache stats"
277264
sccache --show-stats || true
278265
echo "::endgroup::"

0 commit comments

Comments
 (0)