|
@@ -5822,7 +5822,9 @@ function getSource(settings) {
|
|
yield io.mkdirP(settings.repositoryPath);
|
|
yield io.mkdirP(settings.repositoryPath);
|
|
}
|
|
}
|
|
// Git command manager
|
|
// Git command manager
|
|
|
|
+ core.startGroup('Getting Git version info');
|
|
const git = yield getGitCommandManager(settings);
|
|
const git = yield getGitCommandManager(settings);
|
|
|
|
+ core.endGroup();
|
|
// Prepare existing directory, otherwise recreate
|
|
// Prepare existing directory, otherwise recreate
|
|
if (isExisting) {
|
|
if (isExisting) {
|
|
yield gitDirectoryHelper.prepareExistingDirectory(git, settings.repositoryPath, initialRemoteUrl, [httpsUrl, sshUrl], settings.clean);
|
|
yield gitDirectoryHelper.prepareExistingDirectory(git, settings.repositoryPath, initialRemoteUrl, [httpsUrl, sshUrl], settings.clean);
|
|
@@ -5854,21 +5856,27 @@ function getSource(settings) {
|
|
const authHelper = gitAuthHelper.createAuthHelper(git, settings);
|
|
const authHelper = gitAuthHelper.createAuthHelper(git, settings);
|
|
try {
|
|
try {
|
|
// Configure auth
|
|
// Configure auth
|
|
|
|
+ core.startGroup('Setting up auth');
|
|
yield authHelper.configureAuth();
|
|
yield authHelper.configureAuth();
|
|
|
|
+ core.endGroup();
|
|
// LFS install
|
|
// LFS install
|
|
if (settings.lfs) {
|
|
if (settings.lfs) {
|
|
yield git.lfsInstall();
|
|
yield git.lfsInstall();
|
|
}
|
|
}
|
|
// Fetch
|
|
// Fetch
|
|
|
|
+ core.startGroup('Fetching the repository');
|
|
const refSpec = refHelper.getRefSpec(settings.ref, settings.commit);
|
|
const refSpec = refHelper.getRefSpec(settings.ref, settings.commit);
|
|
yield git.fetch(settings.fetchDepth, refSpec);
|
|
yield git.fetch(settings.fetchDepth, refSpec);
|
|
|
|
+ core.endGroup();
|
|
// Checkout info
|
|
// Checkout info
|
|
const checkoutInfo = yield refHelper.getCheckoutInfo(git, settings.ref, settings.commit);
|
|
const checkoutInfo = yield refHelper.getCheckoutInfo(git, settings.ref, settings.commit);
|
|
// LFS fetch
|
|
// LFS fetch
|
|
// Explicit lfs-fetch to avoid slow checkout (fetches one lfs object at a time).
|
|
// Explicit lfs-fetch to avoid slow checkout (fetches one lfs object at a time).
|
|
// Explicit lfs fetch will fetch lfs objects in parallel.
|
|
// Explicit lfs fetch will fetch lfs objects in parallel.
|
|
if (settings.lfs) {
|
|
if (settings.lfs) {
|
|
|
|
+ core.startGroup('Fetching LFS objects');
|
|
yield git.lfsFetch(checkoutInfo.startPoint || checkoutInfo.ref);
|
|
yield git.lfsFetch(checkoutInfo.startPoint || checkoutInfo.ref);
|
|
|
|
+ core.endGroup();
|
|
}
|
|
}
|
|
// Fix URL when using SSH
|
|
// Fix URL when using SSH
|
|
if (settings.sshKey && initialRemoteUrl !== sshUrl) {
|
|
if (settings.sshKey && initialRemoteUrl !== sshUrl) {
|
|
@@ -5880,14 +5888,20 @@ function getSource(settings) {
|
|
if (settings.submodules) {
|
|
if (settings.submodules) {
|
|
try {
|
|
try {
|
|
// Temporarily override global config
|
|
// Temporarily override global config
|
|
|
|
+ core.startGroup('Setting up auth for fetching submodules');
|
|
yield authHelper.configureGlobalAuth();
|
|
yield authHelper.configureGlobalAuth();
|
|
|
|
+ core.endGroup();
|
|
// Checkout submodules
|
|
// Checkout submodules
|
|
|
|
+ core.startGroup('Fetching submodules');
|
|
yield git.submoduleSync(settings.nestedSubmodules);
|
|
yield git.submoduleSync(settings.nestedSubmodules);
|
|
yield git.submoduleUpdate(settings.fetchDepth, settings.nestedSubmodules);
|
|
yield git.submoduleUpdate(settings.fetchDepth, settings.nestedSubmodules);
|
|
yield git.submoduleForeach('git config --local gc.auto 0', settings.nestedSubmodules);
|
|
yield git.submoduleForeach('git config --local gc.auto 0', settings.nestedSubmodules);
|
|
|
|
+ core.endGroup();
|
|
// Persist credentials
|
|
// Persist credentials
|
|
if (settings.persistCredentials) {
|
|
if (settings.persistCredentials) {
|
|
|
|
+ core.startGroup('Persisting credentials for submodules');
|
|
yield authHelper.configureSubmoduleAuth();
|
|
yield authHelper.configureSubmoduleAuth();
|
|
|
|
+ core.endGroup();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
finally {
|
|
finally {
|
|
@@ -5901,7 +5915,9 @@ function getSource(settings) {
|
|
finally {
|
|
finally {
|
|
// Remove auth
|
|
// Remove auth
|
|
if (!settings.persistCredentials) {
|
|
if (!settings.persistCredentials) {
|
|
|
|
+ core.startGroup('Removing auth');
|
|
yield authHelper.removeAuth();
|
|
yield authHelper.removeAuth();
|
|
|
|
+ core.endGroup();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -7241,6 +7257,7 @@ function prepareExistingDirectory(git, repositoryPath, preferredRemoteUrl, allow
|
|
}
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
try {
|
|
|
|
+ core.startGroup('Removing previously created refs, to avoid conflicts');
|
|
// Checkout detached HEAD
|
|
// Checkout detached HEAD
|
|
if (!(yield git.isDetached())) {
|
|
if (!(yield git.isDetached())) {
|
|
yield git.checkoutDetach();
|
|
yield git.checkoutDetach();
|
|
@@ -7255,8 +7272,10 @@ function prepareExistingDirectory(git, repositoryPath, preferredRemoteUrl, allow
|
|
for (const branch of branches) {
|
|
for (const branch of branches) {
|
|
yield git.branchDelete(true, branch);
|
|
yield git.branchDelete(true, branch);
|
|
}
|
|
}
|
|
|
|
+ core.endGroup();
|
|
// Clean
|
|
// Clean
|
|
if (clean) {
|
|
if (clean) {
|
|
|
|
+ core.startGroup('Cleaning the repository');
|
|
if (!(yield git.tryClean())) {
|
|
if (!(yield git.tryClean())) {
|
|
core.debug(`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For futher investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`);
|
|
core.debug(`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For futher investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`);
|
|
remove = true;
|
|
remove = true;
|
|
@@ -7264,6 +7283,7 @@ function prepareExistingDirectory(git, repositoryPath, preferredRemoteUrl, allow
|
|
else if (!(yield git.tryReset())) {
|
|
else if (!(yield git.tryReset())) {
|
|
remove = true;
|
|
remove = true;
|
|
}
|
|
}
|
|
|
|
+ core.endGroup();
|
|
if (remove) {
|
|
if (remove) {
|
|
core.warning(`Unable to clean or reset the repository. The repository will be recreated instead.`);
|
|
core.warning(`Unable to clean or reset the repository. The repository will be recreated instead.`);
|
|
}
|
|
}
|