Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions packages/@aws-cdk/cli-lib-alpha/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions packages/@aws-cdk/cloud-assembly-schema/.projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/aws-cdk/test/cli/cdk-toolkit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1765,7 +1765,7 @@ class FakeCloudFormation extends Deployments {
}

function cliTest(name: string, handler: (dir: string) => void | Promise<any>): void {
test(name, () => withTempDir(handler));
test(name, () => withTempDir(handler), 120000);
}

async function withTempDir(cb: (dir: string) => void | Promise<any>) {
Expand Down
5 changes: 5 additions & 0 deletions projenrc/jsii.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,15 @@ export class JsiiBuild extends pj.Component {
// Only run in CI
condition: 'node -e "if (!process.env.CI) process.exit(1)"',
});

// Do not spawn 'package-all' automatically as part of 'package', the jsii packaging will
// be done as part of the release task.
/*
tsProject.packageTask.spawn(this.packageAllTask, {
// Don't run in CI
condition: 'node -e "if (process.env.CI) process.exit(1)"',
});
*/

const targets: Record<string, any> = {};

Expand Down
Loading