Skip to content

Commit 8aea29b

Browse files
Rollup merge of rust-lang#153529 - homersimpsons:chore/fix-LegacyKeyValueFormat-pr, r=marcoieni
Fix LegacyKeyValueFormat report from docker build: pr Part of rust-lang#152305 r? @marcoieni
2 parents 5d17f08 + fcfd96e commit 8aea29b

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

src/ci/docker/host-x86_64/pr-check-1/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/
3939
# Check library crates on all tier 1 targets.
4040
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
4141
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
42-
ENV SCRIPT \
42+
ENV SCRIPT=" \
4343
# Check some tools that aren't included in `x check` by default, to
4444
# ensure that maintainers can still do check builds locally.
4545
python3 ../x.py check \
@@ -58,4 +58,4 @@ ENV SCRIPT \
5858
python3 ../x.py check --set build.optimized-compiler-builtins=false core alloc std --target=aarch64-unknown-linux-gnu,i686-pc-windows-msvc,i686-unknown-linux-gnu,x86_64-apple-darwin,x86_64-pc-windows-gnu,x86_64-pc-windows-msvc && \
5959
/scripts/validate-toolstate.sh && \
6060
reuse --include-submodules lint && \
61-
python3 ../x.py test collect-license-metadata
61+
python3 ../x.py test collect-license-metadata"

src/ci/docker/host-x86_64/pr-check-2/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ ENV RUST_CONFIGURE_ARGS="--set rust.validate-mir-opts=3"
3030
COPY scripts/sccache.sh /scripts/
3131
RUN sh /scripts/sccache.sh
3232

33-
ENV SCRIPT \
34-
python3 ../x.py check && \
33+
ENV SCRIPT="python3 ../x.py check && \
3534
python3 ../x.py clippy ci --stage 2 && \
3635
python3 ../x.py test --stage 1 core alloc std test proc_macro && \
3736
# Elsewhere, we run all tests for the host. A number of codegen tests are sensitive to the target pointer
@@ -48,4 +47,4 @@ ENV SCRIPT \
4847
RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc library/test --stage 1 && \
4948
# The BOOTSTRAP_TRACING flag is added to verify whether the
5049
# bootstrap process compiles successfully with this flag enabled.
51-
BOOTSTRAP_TRACING=1 python3 ../x.py --help
50+
BOOTSTRAP_TRACING=1 python3 ../x.py --help"

src/ci/docker/host-x86_64/tidy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/
3939

4040
# NOTE: intentionally uses python2 for x.py so we can test it still works.
4141
# validate-toolstate only runs in our CI, so it's ok for it to only support python3.
42-
ENV SCRIPT TIDY_PRINT_DIFF=1 python2.7 ../x.py test \
43-
src/tools/tidy tidyselftest --extra-checks=py,cpp,js,spellcheck
42+
ENV SCRIPT="TIDY_PRINT_DIFF=1 python2.7 ../x.py test \
43+
src/tools/tidy tidyselftest --extra-checks=py,cpp,js,spellcheck"

0 commit comments

Comments
 (0)