Skip to content

Commit

Permalink
Run Doc builds in CI
Browse files Browse the repository at this point in the history
This ensures that the doc build will succeed when run later, since
rustdoc and rustc are known to have different ICEs.
  • Loading branch information
jyn514 committed Jul 2, 2020
1 parent a080ee4 commit 6370e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collector/src/bin/rustc-perf-collector/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ fn main_result() -> anyhow::Result<i32> {
&mut rt,
conn,
&ArtifactId::Commit(commit),
&[BuildKind::Check], // no Debug or Opt builds
&[BuildKind::Check, BuildKind::Doc], // no Debug or Opt builds
&RunKind::all(),
Compiler::from_sysroot(&sysroot),
&benchmarks,
Expand Down

0 comments on commit 6370e02

Please sign in to comment.