Skip to content

Commit 0a74bfc

Browse files
authoredMar 17, 2025
setup.py: drop assumption about local main branch (vllm-project#14692)
Signed-off-by: Russell Bryant <[email protected]>
1 parent dd3b865 commit 0a74bfc

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed
 

‎setup.py

+16-14
Original file line numberDiff line numberDiff line change
@@ -294,26 +294,28 @@ def get_base_commit_in_main_branch(self) -> str:
294294
]).decode("utf-8")
295295
upstream_main_commit = json.loads(resp_json)["sha"]
296296

297-
# Check if the local main branch is up-to-date. This is to ensure
298-
# the base commit we found is the most recent commit on the main
299-
# branch.
300-
local_main_commit = subprocess.check_output(
301-
["git", "rev-parse", "main"]).decode("utf-8").strip()
302-
if local_main_commit != upstream_main_commit:
303-
raise ValueError(
304-
f"Local main branch ({local_main_commit}) is not "
305-
"up-to-date with upstream main branch "
306-
f"({upstream_main_commit}). Please pull the latest "
307-
"changes from upstream main branch first.")
297+
# Check if the upstream_main_commit exists in the local repo
298+
try:
299+
subprocess.check_output(
300+
["git", "cat-file", "-e", f"{upstream_main_commit}"])
301+
except subprocess.CalledProcessError:
302+
# If not present, fetch it from the remote repository.
303+
# Note that this does not update any local branches,
304+
# but ensures that this commit ref and its history are
305+
# available in our local repo.
306+
subprocess.check_call([
307+
"git", "fetch", "https://github.com/vllm-project/vllm",
308+
"main"
309+
])
308310

309311
# Then get the commit hash of the current branch that is the same as
310312
# the upstream main commit.
311313
current_branch = subprocess.check_output(
312314
["git", "branch", "--show-current"]).decode("utf-8").strip()
313315

314-
base_commit = subprocess.check_output(
315-
["git", "merge-base", "main",
316-
current_branch]).decode("utf-8").strip()
316+
base_commit = subprocess.check_output([
317+
"git", "merge-base", f"{upstream_main_commit}", current_branch
318+
]).decode("utf-8").strip()
317319
return base_commit
318320
except ValueError as err:
319321
raise ValueError(err) from None

0 commit comments

Comments
 (0)
Please sign in to comment.