File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,5 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1919COPY scripts/sccache.sh /scripts/
2020RUN sh /scripts/sccache.sh
2121
22+ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
2223ENV SCRIPT python2.7 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616COPY scripts/sccache.sh /scripts/
1717RUN sh /scripts/sccache.sh
1818
19- ENV PARALLEL_CHECK 1
19+ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
2020ENV RUST_CONFIGURE_ARGS \
2121 --build=x86_64-unknown-linux-gnu \
2222 --enable-debug \
Original file line number Diff line number Diff line change 7878# sccache server at the start of the build, but no need to worry if this fails.
7979SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
8080
81- if [ " $PARALLEL_CHECK " != " " ]; then
81+ if [ " $RUN_CHECK_WITH_PARALLEL_QUERIES " != " " ]; then
8282 $SRC /configure --enable-experimental-parallel-queries
83- python2.7 ../x.py check
83+ CARGO_INCREMENTAL=0 python2.7 ../x.py check
8484 rm -f config.toml
8585 rm -rf build
8686fi
You can’t perform that action at this time.
0 commit comments