Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7ac017d

Browse files
committedOct 12, 2017
Prepare the 1.22.0 beta
This updates the Cargo submodule a bit but is otherwise pretty routine.
1 parent 692b94a commit 7ac017d

File tree

5 files changed

+47
-13
lines changed

5 files changed

+47
-13
lines changed
 

‎src/Cargo.lock

+36-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/bootstrap/check.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,17 @@ impl Step for Rls {
246246
let compiler = builder.compiler(stage, host);
247247

248248
builder.ensure(tool::Rls { compiler, target: self.host });
249-
let mut cargo = builder.cargo(compiler, Mode::Tool, host, "test");
250-
cargo.arg("--manifest-path").arg(build.src.join("src/tools/rls/Cargo.toml"));
249+
let mut cargo = tool::prepare_tool_cargo(builder,
250+
compiler,
251+
host,
252+
"test",
253+
"src/tools/rls");
251254

252255
// Don't build tests dynamically, just a pain to work with
253256
cargo.env("RUSTC_NO_PREFER_DYNAMIC", "1");
254257

255258
builder.add_rustc_lib_path(compiler, &mut cargo);
259+
cargo.arg("--").args(&build.config.cmd.test_args());
256260

257261
try_run_expecting(
258262
build,

‎src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343
# FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
4444
# either automatically or manually.
4545
if [ "$DEPLOY$DEPLOY_ALT" != "" ]; then
46-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=nightly"
46+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=beta"
4747
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
4848

4949
if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then

‎src/stage0.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# source tarball for a stable release you'll likely see `1.x.0` for rustc and
1313
# `0.x.0` for Cargo where they were released on `date`.
1414

15-
date: 2017-08-29
16-
rustc: beta
17-
cargo: beta
15+
date: 2017-10-12
16+
rustc: 1.21.0
17+
cargo: 0.22.0
1818

1919
# When making a stable release the process currently looks like:
2020
#

‎src/tools/cargo

Submodule cargo updated 81 files

0 commit comments

Comments
 (0)
Please sign in to comment.