Skip to content

Commit e694dd3

Browse files
committed
Auto merge of #45160 - alexcrichton:beta-next, r=alexcrichton
Prepare the 1.22.0 beta This updates the Cargo submodule a bit but is otherwise pretty routine.
2 parents 692b94a + 07117cf commit e694dd3

File tree

6 files changed

+48
-14
lines changed

6 files changed

+48
-14
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/docker/scripts/android-sdk.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ download_sysimage() {
3131
# Keep printing yes to accept the licenses
3232
while true; do echo yes; sleep 10; done | \
3333
/android/sdk/tools/android update sdk -a --no-ui \
34-
--filter "$filter"
34+
--filter "$filter" --no-https
3535
}
3636

3737
create_avd() {

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)