Setup folder variables in correct order
parent
91c3ced4ea
commit
37b67c350a
|
|
@ -2174,12 +2174,6 @@ class RemoteBuilder {
|
||||||
try {
|
try {
|
||||||
RemoteBuilder.setupBuildPlatform();
|
RemoteBuilder.setupBuildPlatform();
|
||||||
yield this.RemoteBuilderProviderPlatform.setupSharedBuildResources(this.buildId, this.buildParams, this.branchName, this.defaultSecrets);
|
yield this.RemoteBuilderProviderPlatform.setupSharedBuildResources(this.buildId, this.buildParams, this.branchName, this.defaultSecrets);
|
||||||
this.buildPathFull = `/${buildVolumeFolder}/${this.buildId}`;
|
|
||||||
this.builderPathFull = `${this.buildPathFull}/builder`;
|
|
||||||
this.steamPathFull = `${this.buildPathFull}/steam`;
|
|
||||||
this.repoPathFull = `${this.buildPathFull}/${repositoryFolder}`;
|
|
||||||
this.projectPathFull = `${this.repoPathFull}/${this.buildParams.projectPath}`;
|
|
||||||
this.libraryFolderFull = `${this.projectPathFull}/Library`;
|
|
||||||
yield RemoteBuilder.SetupStep();
|
yield RemoteBuilder.SetupStep();
|
||||||
yield RemoteBuilder.BuildStep(baseImage);
|
yield RemoteBuilder.BuildStep(baseImage);
|
||||||
yield RemoteBuilder.CompressionStep();
|
yield RemoteBuilder.CompressionStep();
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -50,13 +50,6 @@ class RemoteBuilder {
|
||||||
this.defaultSecrets,
|
this.defaultSecrets,
|
||||||
);
|
);
|
||||||
|
|
||||||
this.buildPathFull = `/${buildVolumeFolder}/${this.buildId}`;
|
|
||||||
this.builderPathFull = `${this.buildPathFull}/builder`;
|
|
||||||
this.steamPathFull = `${this.buildPathFull}/steam`;
|
|
||||||
this.repoPathFull = `${this.buildPathFull}/${repositoryFolder}`;
|
|
||||||
this.projectPathFull = `${this.repoPathFull}/${this.buildParams.projectPath}`;
|
|
||||||
this.libraryFolderFull = `${this.projectPathFull}/Library`;
|
|
||||||
|
|
||||||
await RemoteBuilder.SetupStep();
|
await RemoteBuilder.SetupStep();
|
||||||
await RemoteBuilder.BuildStep(baseImage);
|
await RemoteBuilder.BuildStep(baseImage);
|
||||||
await RemoteBuilder.CompressionStep();
|
await RemoteBuilder.CompressionStep();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue