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