Collect lfs file into .lfs-asset-id file and print
parent
7d53f9d55e
commit
7545525490
|
|
@ -2081,10 +2081,11 @@ class RemoteBuilder {
|
|||
static SetupStep(buildUid, buildParameters, branchName, defaultSecretsArray) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
core.info('Starting step 1/4 clone and restore cache)');
|
||||
const repoPathFull = `/${buildVolumeFolder}/${buildUid}/${repositoryFolder}`;
|
||||
const cacheFolderFull = `/${buildVolumeFolder}/${cacheFolder}`;
|
||||
const builderPathFull = `/${buildVolumeFolder}/${buildUid}/builder`;
|
||||
const steamPathFull = `/${buildVolumeFolder}/${buildUid}/steam`;
|
||||
const buildPathFull = `/${buildVolumeFolder}/${buildUid}`;
|
||||
const builderPathFull = `${buildPathFull}/builder`;
|
||||
const steamPathFull = `${buildPathFull}/steam`;
|
||||
const repoPathFull = `${buildPathFull}/${repositoryFolder}`;
|
||||
const projectPathFull = `${repoPathFull}/${buildParameters.projectPath}`;
|
||||
const libraryFolderFull = `${projectPathFull}/Library`;
|
||||
yield this.RemoteBuilderProviderPlatform.runBuildTask(buildUid, 'alpine/git', [
|
||||
|
|
@ -2092,6 +2093,7 @@ class RemoteBuilder {
|
|||
apk add unzip;
|
||||
apk add git-lfs;
|
||||
apk add jq;
|
||||
mkdir ${buildPathFull}
|
||||
mkdir ${builderPathFull}
|
||||
mkdir ${repoPathFull}
|
||||
mkdir ${steamPathFull}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -87,10 +87,11 @@ class RemoteBuilder {
|
|||
defaultSecretsArray: RemoteBuilderSecret[],
|
||||
) {
|
||||
core.info('Starting step 1/4 clone and restore cache)');
|
||||
const repoPathFull = `/${buildVolumeFolder}/${buildUid}/${repositoryFolder}`;
|
||||
const cacheFolderFull = `/${buildVolumeFolder}/${cacheFolder}`;
|
||||
const builderPathFull = `/${buildVolumeFolder}/${buildUid}/builder`;
|
||||
const steamPathFull = `/${buildVolumeFolder}/${buildUid}/steam`;
|
||||
const buildPathFull = `/${buildVolumeFolder}/${buildUid}`;
|
||||
const builderPathFull = `${buildPathFull}/builder`;
|
||||
const steamPathFull = `${buildPathFull}/steam`;
|
||||
const repoPathFull = `${buildPathFull}/${repositoryFolder}`;
|
||||
const projectPathFull = `${repoPathFull}/${buildParameters.projectPath}`;
|
||||
const libraryFolderFull = `${projectPathFull}/Library`;
|
||||
await this.RemoteBuilderProviderPlatform.runBuildTask(
|
||||
|
|
@ -101,6 +102,7 @@ class RemoteBuilder {
|
|||
apk add unzip;
|
||||
apk add git-lfs;
|
||||
apk add jq;
|
||||
mkdir ${buildPathFull}
|
||||
mkdir ${builderPathFull}
|
||||
mkdir ${repoPathFull}
|
||||
mkdir ${steamPathFull}
|
||||
|
|
|
|||
Loading…
Reference in New Issue