(localRepo)
| 51 | } |
| 52 | |
| 53 | async function getMergeBaseFromLocalGitRepo(localRepo) { |
| 54 | const repo = await Git.Repository.open(localRepo); |
| 55 | return await Git.Merge.base( |
| 56 | repo, |
| 57 | await repo.getHeadCommit(), |
| 58 | await repo.getBranchCommit('main') |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | async function buildBenchmarkBundlesFromGitRepo( |
| 63 | commitId, |
no outgoing calls
no test coverage detected