1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-04 07:20:07 +02:00

Add the ability to setup a caching git-lfs proxy server

This commit is contained in:
Matthew Endsley 2022-10-11 16:52:31 -07:00
parent 1f9a0c22da
commit 5262024a96
6 changed files with 2391 additions and 2354 deletions

View file

@ -82,6 +82,10 @@ When Git 2.18 or higher is not in your PATH, falls back to the REST API to downl
# Default: false # Default: false
lfs: '' lfs: ''
# URL to use when fetching Git-LFS files
# Default: https://lfscache.office.playeveryware.com/${{ github.repository }}
lfs-url: ''
# Whether to checkout submodules: `true` to checkout submodules or `recursive` to # Whether to checkout submodules: `true` to checkout submodules or `recursive` to
# recursively checkout submodules. # recursively checkout submodules.
# #

View file

@ -59,6 +59,9 @@ inputs:
lfs: lfs:
description: 'Whether to download Git-LFS files' description: 'Whether to download Git-LFS files'
default: false default: false
lfs-url:
description: 'URL to use when fetching Git-LFS files'
default: 'https://lfscache.office.playeveryware.com/${{ github.repository }}'
submodules: submodules:
description: > description: >
Whether to checkout submodules: `true` to checkout submodules or `recursive` to Whether to checkout submodules: `true` to checkout submodules or `recursive` to

11
dist/index.js vendored
View file

@ -18455,6 +18455,7 @@ function getInputs() {
core.debug(`fetch depth = ${result.fetchDepth}`); core.debug(`fetch depth = ${result.fetchDepth}`);
// LFS // LFS
result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'; result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE';
result.lfsurl = (core.getInput('lfs-url') || '');
core.debug(`lfs = ${result.lfs}`); core.debug(`lfs = ${result.lfs}`);
// Submodules // Submodules
result.submodules = false; result.submodules = false;
@ -31920,6 +31921,16 @@ function getSource(settings) {
core.startGroup('Determining the checkout info'); core.startGroup('Determining the checkout info');
const checkoutInfo = yield refHelper.getCheckoutInfo(git, settings.ref, settings.commit); const checkoutInfo = yield refHelper.getCheckoutInfo(git, settings.ref, settings.commit);
core.endGroup(); core.endGroup();
// LFS URL
if (settings.lfs && settings.lfsurl) {
core.startGroup('Setting LFS URL');
yield git
.config('lfs.url', settings.lfsurl, false, false)
.catch(error => {
core.info(`Failed to initialize safe directory with error: ${error}`);
});
core.endGroup();
}
// 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.

View file

@ -182,6 +182,19 @@ export async function getSource(settings: IGitSourceSettings): Promise<void> {
) )
core.endGroup() core.endGroup()
// LFS URL
if (settings.lfs && settings.lfsurl) {
core.startGroup('Setting LFS URL')
await git
.config('lfs.url', settings.lfsurl, false, false)
.catch(error => {
core.info(
`Failed to initialize safe directory with error: ${error}`
)
})
core.endGroup()
}
// 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.

View file

@ -39,6 +39,11 @@ export interface IGitSourceSettings {
*/ */
lfs: boolean lfs: boolean
/**
* The fetch URL to use for LFS objects
*/
lfsurl: string
/** /**
* Indicates whether to checkout submodules * Indicates whether to checkout submodules
*/ */

View file

@ -91,6 +91,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
// LFS // LFS
result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE' result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'
result.lfsurl = (core.getInput('lfs-url') || '')
core.debug(`lfs = ${result.lfs}`) core.debug(`lfs = ${result.lfs}`)
// Submodules // Submodules