Skip to content

Commit b2a805a

Browse files
committed
Auto merge of rust-lang#134131 - jieyouxu:exp-bootstrap-test, r=<try>
[DO NOT MERGE][BETA] What does compiletest see in opt-dist? Does try jobs even work against beta...? r? `@ghost` try-job: dist-x86_64-linux
2 parents 202008a + 748a676 commit b2a805a

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

src/ci/github-actions/jobs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ envs:
7979
# - not running `opt-dist`'s post-optimization smoke tests on the resulting toolchain
8080
#
8181
# If you *want* these to happen however, temporarily uncomment it before triggering a try build.
82-
DIST_TRY_BUILD: 1
82+
#DIST_TRY_BUILD: 1
8383

8484
auto:
8585
<<: *production

src/tools/compiletest/src/main.rs

+10
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ fn main() {
1818

1919
let config = Arc::new(parse_config(env::args().collect()));
2020

21+
eprintln!("INFO: compiletest was told channel=`{}`", config.channel);
22+
eprintln!("INFO: rustc -vV reports:");
23+
eprintln!(
24+
"{}",
25+
String::from_utf8(
26+
std::process::Command::new(&config.rustc_path).arg("-vV").output().unwrap().stdout
27+
)
28+
.unwrap()
29+
);
30+
2131
if !config.has_html_tidy && config.mode == Mode::Rustdoc {
2232
eprintln!("warning: `tidy` (html-tidy.org) is not installed; diffs will not be generated");
2333
}

0 commit comments

Comments
 (0)