perf: limit the fetch depth of pr branch (#2857)
This commit is contained in:
parent
c55203cfde
commit
9153d834b6
3 changed files with 26 additions and 10 deletions
|
@ -210,8 +210,8 @@ describe('create-or-update-branch tests', () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
it('tests if a branch exists and can be fetched', async () => {
|
it('tests if a branch exists and can be fetched', async () => {
|
||||||
expect(await tryFetch(git, REMOTE_NAME, NOT_BASE_BRANCH)).toBeTruthy()
|
expect(await tryFetch(git, REMOTE_NAME, NOT_BASE_BRANCH, 1)).toBeTruthy()
|
||||||
expect(await tryFetch(git, REMOTE_NAME, NOT_EXIST_BRANCH)).toBeFalsy()
|
expect(await tryFetch(git, REMOTE_NAME, NOT_EXIST_BRANCH, 1)).toBeFalsy()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('tests getWorkingBaseAndType on a checked out ref', async () => {
|
it('tests getWorkingBaseAndType on a checked out ref', async () => {
|
||||||
|
|
14
dist/index.js
vendored
14
dist/index.js
vendored
|
@ -44,6 +44,7 @@ const core = __importStar(__nccwpck_require__(2186));
|
||||||
const uuid_1 = __nccwpck_require__(5840);
|
const uuid_1 = __nccwpck_require__(5840);
|
||||||
const CHERRYPICK_EMPTY = 'The previous cherry-pick is now empty, possibly due to conflict resolution.';
|
const CHERRYPICK_EMPTY = 'The previous cherry-pick is now empty, possibly due to conflict resolution.';
|
||||||
const NOTHING_TO_COMMIT = 'nothing to commit, working tree clean';
|
const NOTHING_TO_COMMIT = 'nothing to commit, working tree clean';
|
||||||
|
const FETCH_DEPTH_MARGIN = 10;
|
||||||
var WorkingBaseType;
|
var WorkingBaseType;
|
||||||
(function (WorkingBaseType) {
|
(function (WorkingBaseType) {
|
||||||
WorkingBaseType["Branch"] = "branch";
|
WorkingBaseType["Branch"] = "branch";
|
||||||
|
@ -64,11 +65,12 @@ function getWorkingBaseAndType(git) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.getWorkingBaseAndType = getWorkingBaseAndType;
|
exports.getWorkingBaseAndType = getWorkingBaseAndType;
|
||||||
function tryFetch(git, remote, branch) {
|
function tryFetch(git, remote, branch, depth) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
yield git.fetch([`${branch}:refs/remotes/${remote}/${branch}`], remote, [
|
yield git.fetch([`${branch}:refs/remotes/${remote}/${branch}`], remote, [
|
||||||
'--force'
|
'--force',
|
||||||
|
`--depth=${depth}`
|
||||||
]);
|
]);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -196,8 +198,13 @@ function createOrUpdateBranch(git, commitMessage, base, branch, branchRemoteName
|
||||||
// Reset the base
|
// Reset the base
|
||||||
yield git.fetch([`${base}:${base}`], baseRemote, fetchArgs);
|
yield git.fetch([`${base}:${base}`], baseRemote, fetchArgs);
|
||||||
}
|
}
|
||||||
|
// Determine the fetch depth for the pull request branch (best effort)
|
||||||
|
const tempBranchCommitsAhead = yield commitsAhead(git, base, tempBranch);
|
||||||
|
const fetchDepth = tempBranchCommitsAhead > 0
|
||||||
|
? tempBranchCommitsAhead + FETCH_DEPTH_MARGIN
|
||||||
|
: FETCH_DEPTH_MARGIN;
|
||||||
// Try to fetch the pull request branch
|
// Try to fetch the pull request branch
|
||||||
if (!(yield tryFetch(git, branchRemoteName, branch))) {
|
if (!(yield tryFetch(git, branchRemoteName, branch, fetchDepth))) {
|
||||||
// The pull request branch does not exist
|
// The pull request branch does not exist
|
||||||
core.info(`Pull request branch '${branch}' does not exist yet.`);
|
core.info(`Pull request branch '${branch}' does not exist yet.`);
|
||||||
// Create the pull request branch
|
// Create the pull request branch
|
||||||
|
@ -228,7 +235,6 @@ function createOrUpdateBranch(git, commitMessage, base, branch, branchRemoteName
|
||||||
// temp branch. This catches a case where the base branch has been force pushed to
|
// temp branch. This catches a case where the base branch has been force pushed to
|
||||||
// a new commit.
|
// a new commit.
|
||||||
// For changes on base this reset is equivalent to a rebase of the pull request branch.
|
// For changes on base this reset is equivalent to a rebase of the pull request branch.
|
||||||
const tempBranchCommitsAhead = yield commitsAhead(git, base, tempBranch);
|
|
||||||
const branchCommitsAhead = yield commitsAhead(git, base, branch);
|
const branchCommitsAhead = yield commitsAhead(git, base, branch);
|
||||||
if ((yield git.hasDiff([`${branch}..${tempBranch}`])) ||
|
if ((yield git.hasDiff([`${branch}..${tempBranch}`])) ||
|
||||||
branchCommitsAhead != tempBranchCommitsAhead ||
|
branchCommitsAhead != tempBranchCommitsAhead ||
|
||||||
|
|
|
@ -6,6 +6,8 @@ const CHERRYPICK_EMPTY =
|
||||||
'The previous cherry-pick is now empty, possibly due to conflict resolution.'
|
'The previous cherry-pick is now empty, possibly due to conflict resolution.'
|
||||||
const NOTHING_TO_COMMIT = 'nothing to commit, working tree clean'
|
const NOTHING_TO_COMMIT = 'nothing to commit, working tree clean'
|
||||||
|
|
||||||
|
const FETCH_DEPTH_MARGIN = 10
|
||||||
|
|
||||||
export enum WorkingBaseType {
|
export enum WorkingBaseType {
|
||||||
Branch = 'branch',
|
Branch = 'branch',
|
||||||
Commit = 'commit'
|
Commit = 'commit'
|
||||||
|
@ -31,11 +33,13 @@ export async function getWorkingBaseAndType(
|
||||||
export async function tryFetch(
|
export async function tryFetch(
|
||||||
git: GitCommandManager,
|
git: GitCommandManager,
|
||||||
remote: string,
|
remote: string,
|
||||||
branch: string
|
branch: string,
|
||||||
|
depth: number
|
||||||
): Promise<boolean> {
|
): Promise<boolean> {
|
||||||
try {
|
try {
|
||||||
await git.fetch([`${branch}:refs/remotes/${remote}/${branch}`], remote, [
|
await git.fetch([`${branch}:refs/remotes/${remote}/${branch}`], remote, [
|
||||||
'--force'
|
'--force',
|
||||||
|
`--depth=${depth}`
|
||||||
])
|
])
|
||||||
return true
|
return true
|
||||||
} catch {
|
} catch {
|
||||||
|
@ -215,8 +219,15 @@ export async function createOrUpdateBranch(
|
||||||
await git.fetch([`${base}:${base}`], baseRemote, fetchArgs)
|
await git.fetch([`${base}:${base}`], baseRemote, fetchArgs)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Determine the fetch depth for the pull request branch (best effort)
|
||||||
|
const tempBranchCommitsAhead = await commitsAhead(git, base, tempBranch)
|
||||||
|
const fetchDepth =
|
||||||
|
tempBranchCommitsAhead > 0
|
||||||
|
? tempBranchCommitsAhead + FETCH_DEPTH_MARGIN
|
||||||
|
: FETCH_DEPTH_MARGIN
|
||||||
|
|
||||||
// Try to fetch the pull request branch
|
// Try to fetch the pull request branch
|
||||||
if (!(await tryFetch(git, branchRemoteName, branch))) {
|
if (!(await tryFetch(git, branchRemoteName, branch, fetchDepth))) {
|
||||||
// The pull request branch does not exist
|
// The pull request branch does not exist
|
||||||
core.info(`Pull request branch '${branch}' does not exist yet.`)
|
core.info(`Pull request branch '${branch}' does not exist yet.`)
|
||||||
// Create the pull request branch
|
// Create the pull request branch
|
||||||
|
@ -250,7 +261,6 @@ export async function createOrUpdateBranch(
|
||||||
// temp branch. This catches a case where the base branch has been force pushed to
|
// temp branch. This catches a case where the base branch has been force pushed to
|
||||||
// a new commit.
|
// a new commit.
|
||||||
// For changes on base this reset is equivalent to a rebase of the pull request branch.
|
// For changes on base this reset is equivalent to a rebase of the pull request branch.
|
||||||
const tempBranchCommitsAhead = await commitsAhead(git, base, tempBranch)
|
|
||||||
const branchCommitsAhead = await commitsAhead(git, base, branch)
|
const branchCommitsAhead = await commitsAhead(git, base, branch)
|
||||||
if (
|
if (
|
||||||
(await git.hasDiff([`${branch}..${tempBranch}`])) ||
|
(await git.hasDiff([`${branch}..${tempBranch}`])) ||
|
||||||
|
|
Loading…
Reference in a new issue