File tree Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
22
22
COPY scripts/sccache.sh /scripts/
23
23
RUN sh /scripts/sccache.sh
24
24
25
- RUN mkdir -p /config
26
- RUN echo "[rust]" > /config/nopt-std-config.toml
27
- RUN echo "optimize = false" >> /config/nopt-std-config.toml
28
-
29
25
ENV RUST_CONFIGURE_ARGS --build=i686-unknown-linux-gnu --disable-optimize-tests
30
26
ARG SCRIPT_ARG
31
27
COPY scripts/stage_2_test_set1.sh /scripts/
Original file line number Diff line number Diff line change @@ -22,12 +22,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
22
22
COPY scripts/sccache.sh /scripts/
23
23
RUN sh /scripts/sccache.sh
24
24
25
- RUN mkdir -p /config
26
- RUN echo "[rust]" > /config/nopt-std-config.toml
27
- RUN echo "optimize = false" >> /config/nopt-std-config.toml
28
-
29
25
ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu \
30
26
--disable-optimize-tests \
31
27
--set rust.test-compare-mode
32
- ENV SCRIPT python3 ../x.py test --stage 1 --config /config/nopt-std-config.toml library/std \
28
+ ENV SCRIPT python3 ../x.py test --stage 1 --set rust.optimize=false library/std \
33
29
&& python3 ../x.py --stage 2 test
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ auto:
300
300
env :
301
301
IMAGE : i686-gnu-nopt
302
302
DOCKER_SCRIPT : >-
303
- python3 ../x.py test --stage 1 --config /config/nopt-std-config.toml library/std &&
303
+ python3 ../x.py test --stage 1 --set rust.optimize=false library/std &&
304
304
/scripts/stage_2_test_set2.sh
305
305
<< : *job-linux-4c
306
306
You can’t perform that action at this time.
0 commit comments