File tree 3 files changed +4
-3
lines changed
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 \
19
19
COPY scripts/sccache.sh /scripts/
20
20
RUN sh /scripts/sccache.sh
21
21
22
+ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
22
23
ENV 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 \
16
16
COPY scripts/sccache.sh /scripts/
17
17
RUN sh /scripts/sccache.sh
18
18
19
- ENV PARALLEL_CHECK 1
19
+ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
20
20
ENV RUST_CONFIGURE_ARGS \
21
21
--build=x86_64-unknown-linux-gnu \
22
22
--enable-debug \
Original file line number Diff line number Diff line change 78
78
# sccache server at the start of the build, but no need to worry if this fails.
79
79
SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
80
80
81
- if [ " $PARALLEL_CHECK " != " " ]; then
81
+ if [ " $RUN_CHECK_WITH_PARALLEL_QUERIES " != " " ]; then
82
82
$SRC /configure --enable-experimental-parallel-queries
83
- python2.7 ../x.py check
83
+ CARGO_INCREMENTAL=0 python2.7 ../x.py check
84
84
rm -f config.toml
85
85
rm -rf build
86
86
fi
You can’t perform that action at this time.
0 commit comments