pass the correct args to compiletest · rust-lang/rust@5a562d9 (original) (raw)
File tree
1 file changed
lines changed
- src/bootstrap/src/core/build_steps
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1873,6 +1873,10 @@ note: if you're sure you want to do this, please open an issue as to why. In the | ||
1873 | 1873 | cmd.arg("--git-hash"); |
1874 | 1874 | } |
1875 | 1875 | |
1876 | +let git_config = builder.config.git_config(); | |
1877 | + cmd.arg("--github-repository").arg(git_config.github_repository); | |
1878 | + cmd.arg("--nightly-branch").arg(git_config.nightly_branch); | |
1879 | + | |
1876 | 1880 | builder.ci_env.force_coloring_in_ci(&mut cmd); |
1877 | 1881 | |
1878 | 1882 | #[cfg(feature = "build-metrics")] |