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