add cleanup starting log
parent
b33ed1986f
commit
e2e18b1d77
|
|
@ -1368,6 +1368,7 @@ class AWSBuildEnvironment {
|
|||
}
|
||||
static cleanupResources(CF, taskDef) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
core.info('Cleanup starting');
|
||||
yield CF.deleteStack({
|
||||
StackName: taskDef.taskDefStackName,
|
||||
}).promise();
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -225,6 +225,7 @@ class AWSBuildEnvironment {
|
|||
}
|
||||
|
||||
static async cleanupResources(CF: SDK.CloudFormation, taskDef: RemoteBuilderTaskDef) {
|
||||
core.info('Cleanup starting');
|
||||
await CF.deleteStack({
|
||||
StackName: taskDef.taskDefStackName,
|
||||
}).promise();
|
||||
|
|
|
|||
Loading…
Reference in New Issue