Cleanup
parent
37b67c350a
commit
40dd6f08e2
|
|
@ -2178,9 +2178,8 @@ class RemoteBuilder {
|
|||
yield RemoteBuilder.BuildStep(baseImage);
|
||||
yield RemoteBuilder.CompressionStep();
|
||||
yield RemoteBuilder.UploadArtifacts();
|
||||
if (this.SteamDeploy) {
|
||||
if (this.SteamDeploy)
|
||||
yield RemoteBuilder.DeployToSteam();
|
||||
}
|
||||
yield this.RemoteBuilderProviderPlatform.cleanupSharedBuildResources(this.buildId, this.buildParams, this.branchName, this.defaultSecrets);
|
||||
}
|
||||
catch (error) {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -42,21 +42,17 @@ class RemoteBuilder {
|
|||
RemoteBuilder.setupDefaultSecrets();
|
||||
try {
|
||||
RemoteBuilder.setupBuildPlatform();
|
||||
|
||||
await this.RemoteBuilderProviderPlatform.setupSharedBuildResources(
|
||||
this.buildId,
|
||||
this.buildParams,
|
||||
this.branchName,
|
||||
this.defaultSecrets,
|
||||
);
|
||||
|
||||
await RemoteBuilder.SetupStep();
|
||||
await RemoteBuilder.BuildStep(baseImage);
|
||||
await RemoteBuilder.CompressionStep();
|
||||
await RemoteBuilder.UploadArtifacts();
|
||||
if (this.SteamDeploy) {
|
||||
await RemoteBuilder.DeployToSteam();
|
||||
}
|
||||
if (this.SteamDeploy) await RemoteBuilder.DeployToSteam();
|
||||
await this.RemoteBuilderProviderPlatform.cleanupSharedBuildResources(
|
||||
this.buildId,
|
||||
this.buildParams,
|
||||
|
|
|
|||
Loading…
Reference in New Issue