Skip to content

Commit a3639c6

Browse files
Make all alt builders produce parallel-enabled compilers
We're not quite ready to ship parallel compilers by default, but the alt builders are not used too much (in theory), so we believe that shipping a possibly-broken compiler there is not too problematic.
1 parent 66bf391 commit a3639c6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ci/run.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
5555
if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then
5656
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions"
5757
elif [ "$DEPLOY_ALT" != "" ]; then
58+
if [ "$NO_PARALLEL_COMPILER" = "" ]; then
59+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.parallel-compiler"
60+
fi
5861
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
5962
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
6063
fi

0 commit comments

Comments
 (0)