This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
docker/host-x86_64/mingw-check Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2323
2424RUN curl -sL https://nodejs.org/dist/v16.9.0/node-v16.9.0-linux-x64.tar.xz | tar -xJ
2525ENV PATH="/node-v16.9.0-linux-x64/bin:${PATH}"
26+ ENV RUST_CONFIGURE_ARGS="--set rust.validate-mir-opts=3"
27+
2628# Install es-check
2729# Pin its version to prevent unrelated CI failures due to future es-check versions.
2830RUN npm install es-check@6.1.1 eslint@8.6.0 -g
@@ -39,7 +41,7 @@ COPY host-x86_64/mingw-check/validate-error-codes.sh /scripts/
3941ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
4042ENV SCRIPT python3 ../x.py --stage 2 test src/tools/expand-yaml-anchors && \
4143 python3 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu --all-targets && \
42- python3 ../x.py build --stage 0 src/tools/build-manifest && \
44+ python3 ../x.py build --stage 0 src/tools/build-manifest library/std && \
4345 python3 ../x.py test --stage 0 src/tools/compiletest && \
4446 python3 ../x.py test --stage 0 core alloc std test proc_macro && \
4547 # Build both public and internal documentation.
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
5858RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-locked-deps"
5959RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-cargo-native-static"
6060RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
61- RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set rust.validate-mir-opts=3"
6261
6362# Only produce xz tarballs on CI. gz tarballs will be generated by the release
6463# process by recompressing the existing xz ones. This decreases the storage
You can’t perform that action at this time.
0 commit comments