Skip to content

Commit a015f7f

Browse files
committed
Fix CI
1 parent 975eb31 commit a015f7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bootstrap/configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def v(*args):
3535
o("docs", "build.docs", "build standard library documentation")
3636
o("compiler-docs", "build.compiler-docs", "build compiler documentation")
3737
o("optimize-tests", "rust.optimize-tests", "build tests with optimizations")
38-
o("experimental-parallel-queries", "rust.experimental-parallel-queries", "build rustc with experimental parallelization")
38+
o("parallel-compiler", "rust.parallel-compiler", "build a multi-threaded rustc")
3939
o("test-miri", "rust.test-miri", "run miri's test suite")
4040
o("debuginfo-tests", "rust.debuginfo-tests", "build tests with debugger metadata")
4141
o("verbose-tests", "rust.verbose-tests", "enable verbose output when running tests")

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fi
8282
SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
8383

8484
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
85-
$SRC/configure --enable-experimental-parallel-queries
85+
$SRC/configure --enable-parallel-compiler
8686
CARGO_INCREMENTAL=0 python2.7 ../x.py check
8787
rm -f config.toml
8888
rm -rf build

0 commit comments

Comments
 (0)