mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* chore(cloud-runner): migrate/replace deps aws-sdk v2 to v3 * chore(aws): refactor aws services to support SDK v3 * chore(aws): refactor aws runner to support SDK v3 * chore(aws): update dist * fix(aws): error handling wrap try/catch to avoid unhandled promise rejections. * fix(aws): keeping the syntax simpler for arrays
17 lines
799 B
TypeScript
17 lines
799 B
TypeScript
import CloudRunnerLogger from '../../services/core/cloud-runner-logger';
|
|
import { CloudFormation, DescribeStackEventsCommand } from '@aws-sdk/client-cloudformation';
|
|
import * as core from '@actions/core';
|
|
import CloudRunner from '../../cloud-runner';
|
|
|
|
export class AWSError {
|
|
static async handleStackCreationFailure(error: any, CF: CloudFormation, taskDefStackName: string) {
|
|
CloudRunnerLogger.log('aws error: ');
|
|
core.error(JSON.stringify(error, undefined, 4));
|
|
if (CloudRunner.buildParameters.cloudRunnerDebug) {
|
|
CloudRunnerLogger.log('Getting events and resources for task stack');
|
|
const events = (await CF.send(new DescribeStackEventsCommand({ StackName: taskDefStackName }))).StackEvents;
|
|
CloudRunnerLogger.log(JSON.stringify(events, undefined, 4));
|
|
}
|
|
}
|
|
}
|