Skip to content

Commit

Permalink
Build plume-lib merging, in case the user forgets (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst authored Jun 6, 2024
1 parent 9775f7e commit 4673058
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/python/replay_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"""

import argparse
import git
import os
import sys
import tarfile
Expand Down Expand Up @@ -84,6 +85,13 @@ def merge_replay(
Returns:
pd.Series: The result of the test.
"""

ast_merging_evaluation_repo = git.Repo(".", search_parent_directories=True)
plumelib_merging_dir = Path(ast_merging_evaluation_repo.working_tree_dir) / Path(
"src/scripts/merge_tools/merging"
)
subprocess.run(["./gradlew", "-q", "shadowJar"], cwd=plumelib_merging_dir)

result_df = pd.DataFrame()
with Progress(
SpinnerColumn(),
Expand Down

0 comments on commit 4673058

Please sign in to comment.