Rollup merge of #138452 - Kobzol:remove-run-check-with-parallel-queries, r=Mark-Simulacrum,onur-ozkan
Remove `RUN_CHECK_WITH_PARALLEL_QUERIES` After https://github.com/rust-lang/rust/pull/132282, I'm pretty sure that this is simply useless? It just runs check with an empty config, lol. CC `@onur-ozkan` r? `@Noratrieb`
This commit is contained in:
commit
40ac358b81
4 changed files with 0 additions and 17 deletions
|
@ -30,7 +30,6 @@ COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
|
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
|
||||||
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
|
|
||||||
|
|
||||||
# llvm.use-linker conflicts with downloading CI LLVM
|
# llvm.use-linker conflicts with downloading CI LLVM
|
||||||
ENV NO_DOWNLOAD_CI_LLVM 1
|
ENV NO_DOWNLOAD_CI_LLVM 1
|
||||||
|
|
|
@ -41,8 +41,6 @@ COPY host-x86_64/mingw-check/check-default-config-profiles.sh /scripts/
|
||||||
COPY host-x86_64/mingw-check/validate-toolstate.sh /scripts/
|
COPY host-x86_64/mingw-check/validate-toolstate.sh /scripts/
|
||||||
COPY host-x86_64/mingw-check/validate-error-codes.sh /scripts/
|
COPY host-x86_64/mingw-check/validate-error-codes.sh /scripts/
|
||||||
|
|
||||||
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
|
|
||||||
|
|
||||||
# Check library crates on all tier 1 targets.
|
# Check library crates on all tier 1 targets.
|
||||||
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
|
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
|
||||||
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
|
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
|
||||||
|
|
|
@ -30,7 +30,6 @@ COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
|
ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
|
||||||
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
|
|
||||||
|
|
||||||
# llvm.use-linker conflicts with downloading CI LLVM
|
# llvm.use-linker conflicts with downloading CI LLVM
|
||||||
ENV NO_DOWNLOAD_CI_LLVM 1
|
ENV NO_DOWNLOAD_CI_LLVM 1
|
||||||
|
|
|
@ -260,19 +260,6 @@ else
|
||||||
do_make "$RUST_CHECK_TARGET"
|
do_make "$RUST_CHECK_TARGET"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
|
|
||||||
rm -f config.toml
|
|
||||||
$SRC/configure --set change-id=99999999
|
|
||||||
|
|
||||||
# Save the build metrics before we wipe the directory
|
|
||||||
mv build/metrics.json .
|
|
||||||
rm -rf build
|
|
||||||
mkdir build
|
|
||||||
mv metrics.json build
|
|
||||||
|
|
||||||
CARGO_INCREMENTAL=0 ../x check
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "::group::sccache stats"
|
echo "::group::sccache stats"
|
||||||
sccache --show-stats || true
|
sccache --show-stats || true
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue