Skip to content

Commit 70d1fac

Browse files
committed
ci(amplify-category-api-e2e-tests): add throwaway buildspec for RDS revert [#3449]
Runs only the 4 affected RDS groups + prerequisites. Remove before merge.
1 parent 3d96347 commit 70d1fac

1 file changed

Lines changed: 62 additions & 0 deletions

File tree

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# throwaway buildspec to verify the reverted VPC-endpoint assertion [#3449]
2+
# runs ONLY the 4 affected RDS groups + their prerequisites (build_linux, publish_to_local_registry).
3+
# blocks copied verbatim from codebuild_specs/e2e_workflow_api_gql.yml. do not regenerate.
4+
version: 0.2
5+
env:
6+
shell: bash
7+
compute-type: BUILD_GENERAL1_MEDIUM
8+
variables:
9+
JSII_DEPRECATED: quiet
10+
batch:
11+
fast-fail: false
12+
build-graph:
13+
- identifier: build_linux
14+
buildspec: codebuild_specs/build_linux.yml
15+
env:
16+
compute-type: BUILD_GENERAL1_LARGE
17+
- identifier: publish_to_local_registry
18+
buildspec: codebuild_specs/publish_to_local_registry.yml
19+
env:
20+
compute-type: BUILD_GENERAL1_MEDIUM
21+
depend-on:
22+
- build_linux
23+
- identifier: rds_pg_model_v2
24+
buildspec: codebuild_specs/run_e2e_tests.yml
25+
env:
26+
compute-type: BUILD_GENERAL1_MEDIUM
27+
variables:
28+
NODE_OPTIONS: '--max-old-space-size=6656 --experimental-vm-modules'
29+
TEST_SUITE: src/__tests__/rds-pg-model-v2.test.ts
30+
CLI_REGION: eu-west-3
31+
depend-on:
32+
- publish_to_local_registry
33+
- identifier: rds_pg_import
34+
buildspec: codebuild_specs/run_e2e_tests.yml
35+
env:
36+
compute-type: BUILD_GENERAL1_MEDIUM
37+
variables:
38+
NODE_OPTIONS: '--max-old-space-size=6656 --experimental-vm-modules'
39+
TEST_SUITE: src/__tests__/rds-pg-import.test.ts
40+
CLI_REGION: us-east-1
41+
depend-on:
42+
- publish_to_local_registry
43+
- identifier: rds_pg_array_objects
44+
buildspec: codebuild_specs/run_e2e_tests.yml
45+
env:
46+
compute-type: BUILD_GENERAL1_MEDIUM
47+
variables:
48+
NODE_OPTIONS: '--max-old-space-size=6656 --experimental-vm-modules'
49+
TEST_SUITE: src/__tests__/rds-pg-array-objects.test.ts
50+
CLI_REGION: eu-central-1
51+
depend-on:
52+
- publish_to_local_registry
53+
- identifier: rds_mysql_model_v2
54+
buildspec: codebuild_specs/run_e2e_tests.yml
55+
env:
56+
compute-type: BUILD_GENERAL1_MEDIUM
57+
variables:
58+
NODE_OPTIONS: '--max-old-space-size=6656 --experimental-vm-modules'
59+
TEST_SUITE: src/__tests__/rds-mysql-model-v2.test.ts
60+
CLI_REGION: us-west-2
61+
depend-on:
62+
- publish_to_local_registry

0 commit comments

Comments
 (0)