Skip to content

Commit b24943f

Browse files
authored
Unrolled build for rust-lang#130161
Rollup merge of rust-lang#130161 - onur-ozkan:fmt-changed-files, r=Kobzol,RalfJung refactor merge base logic and fix `x fmt` When remote upstream is not configured, using [get_git_modified_files](https://github.com/rust-lang/rust/blob/38e3a5771cefc9362976a605549f8b04d5707311/src/tools/build_helper/src/git.rs#L114) to find modified files fails because [get_rust_lang_rust_remote](https://github.com/rust-lang/rust/blob/38e3a5771cefc9362976a605549f8b04d5707311/src/tools/build_helper/src/git.rs#L46-L48) can not resolve "rust-lang/rust" from the git output. The changes in this PR makes bootstrap to find the latest bors commit, treating it as the "closest upstream commit" so that the change tracker logic can use it to find the diffs. In addition, [skips formatting](rust-lang@e392454) if there are no modified files. Fixes rust-lang#130147
2 parents 5bce6d4 + 5f32717 commit b24943f

File tree

13 files changed

+79
-58
lines changed

13 files changed

+79
-58
lines changed

src/bootstrap/src/core/build_steps/compile.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use std::path::{Path, PathBuf};
1515
use std::process::Stdio;
1616
use std::{env, fs, str};
1717

18+
use build_helper::git::get_closest_merge_commit;
1819
use serde_derive::Deserialize;
1920

2021
use crate::core::build_steps::tool::SourceType;
@@ -26,8 +27,7 @@ use crate::core::builder::{
2627
use crate::core::config::{DebuginfoLevel, LlvmLibunwind, RustcLto, TargetSelection};
2728
use crate::utils::exec::command;
2829
use crate::utils::helpers::{
29-
self, exe, get_clang_cl_resource_dir, get_closest_merge_base_commit, is_debug_info, is_dylib,
30-
symlink_dir, t, up_to_date,
30+
self, exe, get_clang_cl_resource_dir, is_debug_info, is_dylib, symlink_dir, t, up_to_date,
3131
};
3232
use crate::{CLang, Compiler, DependencyType, GitRepo, Mode, LLVM_TOOLS};
3333

@@ -127,13 +127,9 @@ impl Step for Std {
127127
// the `rust.download-rustc=true` option.
128128
let force_recompile =
129129
if builder.rust_info().is_managed_git_subrepository() && builder.download_rustc() {
130-
let closest_merge_commit = get_closest_merge_base_commit(
131-
Some(&builder.src),
132-
&builder.config.git_config(),
133-
&builder.config.stage0_metadata.config.git_merge_commit_email,
134-
&[],
135-
)
136-
.unwrap();
130+
let closest_merge_commit =
131+
get_closest_merge_commit(Some(&builder.src), &builder.config.git_config(), &[])
132+
.unwrap();
137133

138134
// Check if `library` has changes (returns false otherwise)
139135
!t!(helpers::git(Some(&builder.src))

src/bootstrap/src/core/build_steps/format.rs

+5
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ pub fn format(build: &Builder<'_>, check: bool, all: bool, paths: &[PathBuf]) {
200200
adjective = Some("modified");
201201
match get_modified_rs_files(build) {
202202
Ok(Some(files)) => {
203+
if files.is_empty() {
204+
println!("fmt info: No modified files detected for formatting.");
205+
return;
206+
}
207+
203208
for file in files {
204209
override_builder.add(&format!("/{file}")).expect(&file);
205210
}

src/bootstrap/src/core/build_steps/llvm.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ use std::sync::OnceLock;
1616
use std::{env, io};
1717

1818
use build_helper::ci::CiEnv;
19+
use build_helper::git::get_closest_merge_commit;
1920

2021
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
2122
use crate::core::config::{Config, TargetSelection};
@@ -153,10 +154,9 @@ pub fn prebuilt_llvm_config(builder: &Builder<'_>, target: TargetSelection) -> L
153154
/// This retrieves the LLVM sha we *want* to use, according to git history.
154155
pub(crate) fn detect_llvm_sha(config: &Config, is_git: bool) -> String {
155156
let llvm_sha = if is_git {
156-
helpers::get_closest_merge_base_commit(
157+
get_closest_merge_commit(
157158
Some(&config.src),
158159
&config.git_config(),
159-
&config.stage0_metadata.config.git_merge_commit_email,
160160
&[
161161
config.src.join("src/llvm-project"),
162162
config.src.join("src/bootstrap/download-ci-llvm-stamp"),

src/bootstrap/src/core/build_steps/suggest.rs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pub fn suggest(builder: &Builder<'_>, run: bool) {
1717
.tool_cmd(Tool::SuggestTests)
1818
.env("SUGGEST_TESTS_GIT_REPOSITORY", git_config.git_repository)
1919
.env("SUGGEST_TESTS_NIGHTLY_BRANCH", git_config.nightly_branch)
20+
.env("SUGGEST_TESTS_MERGE_COMMIT_EMAIL", git_config.git_merge_commit_email)
2021
.run_capture_stdout(builder)
2122
.stdout();
2223

src/bootstrap/src/core/build_steps/test.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2098,6 +2098,7 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the
20982098
let git_config = builder.config.git_config();
20992099
cmd.arg("--git-repository").arg(git_config.git_repository);
21002100
cmd.arg("--nightly-branch").arg(git_config.nightly_branch);
2101+
cmd.arg("--git-merge-commit-email").arg(git_config.git_merge_commit_email);
21012102
cmd.force_coloring_in_ci();
21022103

21032104
#[cfg(feature = "build-metrics")]

src/bootstrap/src/core/build_steps/tool.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
use std::path::PathBuf;
22
use std::{env, fs};
33

4+
use build_helper::git::get_closest_merge_commit;
5+
46
use crate::core::build_steps::compile;
57
use crate::core::build_steps::toolstate::ToolState;
68
use crate::core::builder;
79
use crate::core::builder::{Builder, Cargo as CargoCommand, RunConfig, ShouldRun, Step};
810
use crate::core::config::TargetSelection;
911
use crate::utils::channel::GitInfo;
1012
use crate::utils::exec::{command, BootstrapCommand};
11-
use crate::utils::helpers::{add_dylib_path, exe, get_closest_merge_base_commit, git, t};
13+
use crate::utils::helpers::{add_dylib_path, exe, git, t};
1214
use crate::{gha, Compiler, Kind, Mode};
1315

1416
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
@@ -576,10 +578,9 @@ impl Step for Rustdoc {
576578
&& target_compiler.stage > 0
577579
&& builder.rust_info().is_managed_git_subrepository()
578580
{
579-
let commit = get_closest_merge_base_commit(
581+
let commit = get_closest_merge_commit(
580582
Some(&builder.config.src),
581583
&builder.config.git_config(),
582-
&builder.config.stage0_metadata.config.git_merge_commit_email,
583584
&[],
584585
)
585586
.unwrap();

src/bootstrap/src/core/config/config.rs

+5-16
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use std::sync::OnceLock;
1414
use std::{cmp, env, fs};
1515

1616
use build_helper::exit;
17-
use build_helper::git::{output_result, GitConfig};
17+
use build_helper::git::{get_closest_merge_commit, output_result, GitConfig};
1818
use serde::{Deserialize, Deserializer};
1919
use serde_derive::Deserialize;
2020

@@ -24,7 +24,7 @@ pub use crate::core::config::flags::Subcommand;
2424
use crate::core::config::flags::{Color, Flags, Warnings};
2525
use crate::utils::cache::{Interned, INTERNER};
2626
use crate::utils::channel::{self, GitInfo};
27-
use crate::utils::helpers::{self, exe, get_closest_merge_base_commit, output, t};
27+
use crate::utils::helpers::{self, exe, output, t};
2828

2929
macro_rules! check_ci_llvm {
3030
($name:expr) => {
@@ -2512,6 +2512,7 @@ impl Config {
25122512
GitConfig {
25132513
git_repository: &self.stage0_metadata.config.git_repository,
25142514
nightly_branch: &self.stage0_metadata.config.nightly_branch,
2515+
git_merge_commit_email: &self.stage0_metadata.config.git_merge_commit_email,
25152516
}
25162517
}
25172518

@@ -2688,13 +2689,7 @@ impl Config {
26882689

26892690
// Look for a version to compare to based on the current commit.
26902691
// Only commits merged by bors will have CI artifacts.
2691-
let commit = get_closest_merge_base_commit(
2692-
Some(&self.src),
2693-
&self.git_config(),
2694-
&self.stage0_metadata.config.git_merge_commit_email,
2695-
&[],
2696-
)
2697-
.unwrap();
2692+
let commit = get_closest_merge_commit(Some(&self.src), &self.git_config(), &[]).unwrap();
26982693
if commit.is_empty() {
26992694
println!("ERROR: could not find commit hash for downloading rustc");
27002695
println!("HELP: maybe your repository history is too shallow?");
@@ -2786,13 +2781,7 @@ impl Config {
27862781
) -> Option<String> {
27872782
// Look for a version to compare to based on the current commit.
27882783
// Only commits merged by bors will have CI artifacts.
2789-
let commit = get_closest_merge_base_commit(
2790-
Some(&self.src),
2791-
&self.git_config(),
2792-
&self.stage0_metadata.config.git_merge_commit_email,
2793-
&[],
2794-
)
2795-
.unwrap();
2784+
let commit = get_closest_merge_commit(Some(&self.src), &self.git_config(), &[]).unwrap();
27962785
if commit.is_empty() {
27972786
println!("error: could not find commit hash for downloading components from CI");
27982787
println!("help: maybe your repository history is too shallow?");

src/bootstrap/src/utils/helpers.rs

-23
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use std::sync::OnceLock;
1010
use std::time::{Instant, SystemTime, UNIX_EPOCH};
1111
use std::{env, fs, io, str};
1212

13-
use build_helper::git::{get_git_merge_base, output_result, GitConfig};
1413
use build_helper::util::fail;
1514

1615
use crate::core::builder::Builder;
@@ -523,28 +522,6 @@ pub fn git(source_dir: Option<&Path>) -> BootstrapCommand {
523522
git
524523
}
525524

526-
/// Returns the closest commit available from upstream for the given `author` and `target_paths`.
527-
///
528-
/// If it fails to find the commit from upstream using `git merge-base`, fallbacks to HEAD.
529-
pub fn get_closest_merge_base_commit(
530-
source_dir: Option<&Path>,
531-
config: &GitConfig<'_>,
532-
author: &str,
533-
target_paths: &[PathBuf],
534-
) -> Result<String, String> {
535-
let mut git = git(source_dir);
536-
537-
let merge_base = get_git_merge_base(config, source_dir).unwrap_or_else(|_| "HEAD".into());
538-
539-
git.args(["rev-list", &format!("--author={author}"), "-n1", "--first-parent", &merge_base]);
540-
541-
if !target_paths.is_empty() {
542-
git.arg("--").args(target_paths);
543-
}
544-
545-
Ok(output_result(git.as_command_mut())?.trim().to_owned())
546-
}
547-
548525
/// Sets the file times for a given file at `path`.
549526
pub fn set_file_times<P: AsRef<Path>>(path: P, times: fs::FileTimes) -> io::Result<()> {
550527
// Windows requires file to be writable to modify file times. But on Linux CI the file does not

src/tools/build_helper/src/git.rs

+40-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
use std::path::Path;
1+
use std::path::{Path, PathBuf};
22
use std::process::{Command, Stdio};
33

44
pub struct GitConfig<'a> {
55
pub git_repository: &'a str,
66
pub nightly_branch: &'a str,
7+
pub git_merge_commit_email: &'a str,
78
}
89

910
/// Runs a command and returns the output
@@ -95,7 +96,11 @@ pub fn updated_master_branch(
9596
Err("Cannot find any suitable upstream master branch".to_owned())
9697
}
9798

98-
pub fn get_git_merge_base(
99+
/// Finds the nearest merge commit by comparing the local `HEAD` with the upstream branch's state.
100+
/// To work correctly, the upstream remote must be properly configured using `git remote add <name> <url>`.
101+
/// In most cases `get_closest_merge_commit` is the function you are looking for as it doesn't require remote
102+
/// to be configured.
103+
fn git_upstream_merge_base(
99104
config: &GitConfig<'_>,
100105
git_dir: Option<&Path>,
101106
) -> Result<String, String> {
@@ -107,6 +112,38 @@ pub fn get_git_merge_base(
107112
Ok(output_result(git.arg("merge-base").arg(&updated_master).arg("HEAD"))?.trim().to_owned())
108113
}
109114

115+
/// Searches for the nearest merge commit in the repository that also exists upstream.
116+
///
117+
/// If it fails to find the upstream remote, it then looks for the most recent commit made
118+
/// by the merge bot by matching the author's email address with the merge bot's email.
119+
pub fn get_closest_merge_commit(
120+
git_dir: Option<&Path>,
121+
config: &GitConfig<'_>,
122+
target_paths: &[PathBuf],
123+
) -> Result<String, String> {
124+
let mut git = Command::new("git");
125+
126+
if let Some(git_dir) = git_dir {
127+
git.current_dir(git_dir);
128+
}
129+
130+
let merge_base = git_upstream_merge_base(config, git_dir).unwrap_or_else(|_| "HEAD".into());
131+
132+
git.args([
133+
"rev-list",
134+
&format!("--author={}", config.git_merge_commit_email),
135+
"-n1",
136+
"--first-parent",
137+
&merge_base,
138+
]);
139+
140+
if !target_paths.is_empty() {
141+
git.arg("--").args(target_paths);
142+
}
143+
144+
Ok(output_result(&mut git)?.trim().to_owned())
145+
}
146+
110147
/// Returns the files that have been modified in the current branch compared to the master branch.
111148
/// The `extensions` parameter can be used to filter the files by their extension.
112149
/// Does not include removed files.
@@ -116,7 +153,7 @@ pub fn get_git_modified_files(
116153
git_dir: Option<&Path>,
117154
extensions: &[&str],
118155
) -> Result<Option<Vec<String>>, String> {
119-
let merge_base = get_git_merge_base(config, git_dir)?;
156+
let merge_base = get_closest_merge_commit(git_dir, config, &[])?;
120157

121158
let mut git = Command::new("git");
122159
if let Some(git_dir) = git_dir {

src/tools/compiletest/src/common.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ pub struct Config {
384384
// Needed both to construct build_helper::git::GitConfig
385385
pub git_repository: String,
386386
pub nightly_branch: String,
387+
pub git_merge_commit_email: String,
387388

388389
/// True if the profiler runtime is enabled for this target.
389390
/// Used by the "needs-profiler-support" header in test files.
@@ -461,7 +462,11 @@ impl Config {
461462
}
462463

463464
pub fn git_config(&self) -> GitConfig<'_> {
464-
GitConfig { git_repository: &self.git_repository, nightly_branch: &self.nightly_branch }
465+
GitConfig {
466+
git_repository: &self.git_repository,
467+
nightly_branch: &self.nightly_branch,
468+
git_merge_commit_email: &self.git_merge_commit_email,
469+
}
465470
}
466471
}
467472

src/tools/compiletest/src/header/tests.rs

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ impl ConfigBuilder {
148148
self.target.as_deref().unwrap_or("x86_64-unknown-linux-gnu"),
149149
"--git-repository=",
150150
"--nightly-branch=",
151+
"--git-merge-commit-email=",
151152
];
152153
let mut args: Vec<String> = args.iter().map(ToString::to_string).collect();
153154

src/tools/compiletest/src/lib.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,13 @@ pub fn parse_config(args: Vec<String>) -> Config {
163163
)
164164
.optopt("", "edition", "default Rust edition", "EDITION")
165165
.reqopt("", "git-repository", "name of the git repository", "ORG/REPO")
166-
.reqopt("", "nightly-branch", "name of the git branch for nightly", "BRANCH");
166+
.reqopt("", "nightly-branch", "name of the git branch for nightly", "BRANCH")
167+
.reqopt(
168+
"",
169+
"git-merge-commit-email",
170+
"email address used for finding merge commits",
171+
"EMAIL",
172+
);
167173

168174
let (argv0, args_) = args.split_first().unwrap();
169175
if args.len() == 1 || args[1] == "-h" || args[1] == "--help" {
@@ -346,6 +352,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
346352

347353
git_repository: matches.opt_str("git-repository").unwrap(),
348354
nightly_branch: matches.opt_str("nightly-branch").unwrap(),
355+
git_merge_commit_email: matches.opt_str("git-merge-commit-email").unwrap(),
349356

350357
profiler_support: matches.opt_present("profiler-support"),
351358
}

src/tools/suggest-tests/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ fn main() -> ExitCode {
88
&GitConfig {
99
git_repository: &env("SUGGEST_TESTS_GIT_REPOSITORY"),
1010
nightly_branch: &env("SUGGEST_TESTS_NIGHTLY_BRANCH"),
11+
git_merge_commit_email: &env("SUGGEST_TESTS_MERGE_COMMIT_EMAIL"),
1112
},
1213
None,
1314
&Vec::new(),

0 commit comments

Comments
 (0)