add cleanup starting log
parent
b33ed1986f
commit
e2e18b1d77
|
|
@ -1368,6 +1368,7 @@ class AWSBuildEnvironment {
|
||||||
}
|
}
|
||||||
static cleanupResources(CF, taskDef) {
|
static cleanupResources(CF, taskDef) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
|
core.info('Cleanup starting');
|
||||||
yield CF.deleteStack({
|
yield CF.deleteStack({
|
||||||
StackName: taskDef.taskDefStackName,
|
StackName: taskDef.taskDefStackName,
|
||||||
}).promise();
|
}).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) {
|
static async cleanupResources(CF: SDK.CloudFormation, taskDef: RemoteBuilderTaskDef) {
|
||||||
|
core.info('Cleanup starting');
|
||||||
await CF.deleteStack({
|
await CF.deleteStack({
|
||||||
StackName: taskDef.taskDefStackName,
|
StackName: taskDef.taskDefStackName,
|
||||||
}).promise();
|
}).promise();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue