Skip to content

Commit 9e0a8d7

Browse files
authoredApr 25, 2023
chore: update gitpod.yaml to build multiple packages (aws#25245)
With aws#25224 , gitpod now prebuilds the `aws-cdk-lib` for us and is potentially saving 7-9 minutes with that. This PR makes gitpod continue to build `@aws-cdk-testing/framework-integ` so developers don't have to spend their time waiting for the all integ building. Closes #<issue number here>. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent c9c82b6 commit 9e0a8d7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎.gitpod.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ github:
66
image: jsii/superchain:1-buster-slim-node16
77

88
tasks:
9-
- init: yarn install && cd packages/aws-cdk-lib && NODE_OPTIONS=--max-old-space-size=8192 ../../scripts/buildup
9+
- init: |
10+
(
11+
set -e
12+
yarn install
13+
export NODE_OPTIONS=--max-old-space-size=8192
14+
# pre-build packages
15+
npx lerna run build --scope=aws-cdk-lib --scope=@aws-cdk-testing/framework-integ --skip-nx-cache
16+
)
1017
1118
vscode:
1219
extensions:

0 commit comments

Comments
 (0)
Please sign in to comment.