Skip to content

Commit a7d891e

Browse files
committed
Auto merge of rust-lang#71378 - Mark-Simulacrum:beta-next, r=Mark-Simulacrum
[beta] Switch to dev-static bootstrap Finishes master to beta promotion.
2 parents 45d050c + 59ced7b commit a7d891e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/bootstrap/dist.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1461,18 +1461,18 @@ impl Step for Miri {
14611461
builder.create_dir(&image);
14621462

14631463
// Prepare the image directory
1464-
// We expect miri to build, because we've exited this step above if tool
1465-
// state for miri isn't testing.
1464+
// We're always fine with miri not building, we don't ship it on
1465+
// beta/stable anyway.
14661466
let miri = builder
14671467
.ensure(tool::Miri { compiler, target, extra_features: Vec::new() })
14681468
.or_else(|| {
1469-
missing_tool("miri", builder.build.config.missing_tools);
1469+
missing_tool("miri", true);
14701470
None
14711471
})?;
14721472
let cargomiri = builder
14731473
.ensure(tool::CargoMiri { compiler, target, extra_features: Vec::new() })
14741474
.or_else(|| {
1475-
missing_tool("cargo miri", builder.build.config.missing_tools);
1475+
missing_tool("cargo miri", true);
14761476
None
14771477
})?;
14781478

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
#
5252
# FIXME: need a scheme for changing this `nightly` value to `beta` and `stable`
5353
# either automatically or manually.
54-
export RUST_RELEASE_CHANNEL=nightly
54+
export RUST_RELEASE_CHANNEL=beta
5555

5656
# Always set the release channel for bootstrap; this is normally not important (i.e., only dist
5757
# builds would seem to matter) but in practice bootstrap wants to know whether we're targeting

src/stage0.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
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: 2020-03-12
16-
rustc: beta
17-
cargo: beta
15+
date: 2020-04-21
16+
rustc: 1.43.0
17+
cargo: 0.44.0
1818

1919
# We use a nightly rustfmt to format the source because it solves some
2020
# bootstrapping issues with use of new syntax in this repo. If you're looking at
2121
# the beta/stable branch, this key should be omitted, as we don't want to depend
2222
# on rustfmt from nightly there.
23-
rustfmt: nightly-2020-01-31
23+
#rustfmt: nightly-2020-01-31
2424

2525
# When making a stable release the process currently looks like:
2626
#
@@ -40,4 +40,4 @@ rustfmt: nightly-2020-01-31
4040
# looking at a beta source tarball and it's uncommented we'll shortly comment it
4141
# out.
4242

43-
#dev: 1
43+
dev: 1

0 commit comments

Comments
 (0)