Skip to content

Commit 71eb7ff

Browse files
committed
resolve conflicts
2 parents 5393392 + 5bf7624 commit 71eb7ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+612
-184
lines changed

.github/workflows/integ.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,16 +676,54 @@ const tmpToolkitHelpers = configureProject(
676676
devDeps: [
677677
'@types/archiver',
678678
'@types/semver',
679+
'aws-sdk-client-mock',
680+
'aws-sdk-client-mock-jest',
679681
'fast-check',
682+
'nock',
683+
'@smithy/util-stream',
684+
'xml-js',
680685
],
681686
deps: [
682687
cloudAssemblySchema.name,
683688
cloudFormationDiff,
684689
cxApi,
690+
`@aws-sdk/client-appsync@${CLI_SDK_V3_RANGE}`,
691+
`@aws-sdk/client-cloudcontrol@${CLI_SDK_V3_RANGE}`,
685692
`@aws-sdk/client-cloudformation@${CLI_SDK_V3_RANGE}`,
693+
`@aws-sdk/client-cloudwatch-logs@${CLI_SDK_V3_RANGE}`,
694+
`@aws-sdk/client-codebuild@${CLI_SDK_V3_RANGE}`,
695+
`@aws-sdk/client-ec2@${CLI_SDK_V3_RANGE}`,
696+
`@aws-sdk/client-ecr@${CLI_SDK_V3_RANGE}`,
697+
`@aws-sdk/client-ecs@${CLI_SDK_V3_RANGE}`,
698+
`@aws-sdk/client-elastic-load-balancing-v2@${CLI_SDK_V3_RANGE}`,
699+
`@aws-sdk/client-iam@${CLI_SDK_V3_RANGE}`,
700+
`@aws-sdk/client-kms@${CLI_SDK_V3_RANGE}`,
701+
`@aws-sdk/client-lambda@${CLI_SDK_V3_RANGE}`,
702+
`@aws-sdk/client-route-53@${CLI_SDK_V3_RANGE}`,
703+
`@aws-sdk/client-s3@${CLI_SDK_V3_RANGE}`,
704+
`@aws-sdk/client-secrets-manager@${CLI_SDK_V3_RANGE}`,
705+
`@aws-sdk/client-sfn@${CLI_SDK_V3_RANGE}`,
706+
`@aws-sdk/client-ssm@${CLI_SDK_V3_RANGE}`,
707+
`@aws-sdk/client-sts@${CLI_SDK_V3_RANGE}`,
708+
`@aws-sdk/credential-providers@${CLI_SDK_V3_RANGE}`,
709+
`@aws-sdk/lib-storage@${CLI_SDK_V3_RANGE}`,
710+
`@aws-sdk/ec2-metadata-service@${CLI_SDK_V3_RANGE}`,
711+
'@smithy/middleware-endpoint',
712+
'@smithy/node-http-handler',
713+
'@smithy/property-provider',
714+
'@smithy/shared-ini-file-loader',
715+
'@smithy/types',
716+
'@smithy/util-retry',
717+
'@smithy/util-waiter',
718+
cdkAssets,
686719
'archiver',
687720
'chalk@4',
721+
'fs-extra@^9',
688722
'glob',
723+
'minimatch',
724+
'p-limit@^3',
725+
'promptly', // @todo remove this should only be in CLI
726+
'proxy-agent', // @todo remove this should only be in CLI
689727
'semver',
690728
'uuid',
691729
'wrap-ansi@^7', // Last non-ESM version
@@ -870,9 +908,6 @@ const cli = configureProject(
870908
// We have many tests here that commonly time out
871909
testTimeout: 60_000,
872910
coveragePathIgnorePatterns: [
873-
// Mostly wrappers around the SDK, which get mocked in unit tests
874-
'<rootDir>/lib/api/aws-auth/sdk.ts',
875-
876911
// Files generated by cli-args-gen
877912
'<rootDir>/lib/cli/parse-command-line-arguments.ts',
878913
'<rootDir>/lib/cli/user-input.ts',
@@ -1187,7 +1222,7 @@ const toolkitLib = configureProject(
11871222
tmpToolkitHelpers,
11881223
'aws-cdk-lib',
11891224
'aws-sdk-client-mock',
1190-
'dts-bundle-generator',
1225+
'dts-bundle-generator@9.3.1', // use this specific version because newer versions are much slower. This is a temporary arrangement we hope to remove soon anyway.
11911226
'esbuild',
11921227
'typedoc',
11931228
],
@@ -1522,6 +1557,7 @@ new CdkCliIntegTestsWorkflow(repo, {
15221557
testEnvironment: TEST_ENVIRONMENT,
15231558
buildRunsOn: POWERFUL_RUNNER,
15241559
testRunsOn: POWERFUL_RUNNER,
1560+
maxWorkers: '80',
15251561

15261562
localPackages: [
15271563
cloudAssemblySchema.name,

package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk/tmp-toolkit-helpers/.projen/deps.json

Lines changed: 174 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk/tmp-toolkit-helpers/.projen/tasks.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)