From 4e163379a5c5040ca267842abf9c5c586dd94d25 Mon Sep 17 00:00:00 2001 From: tdikland Date: Fri, 30 Oct 2020 22:22:08 +0000 Subject: [PATCH] feat(pipelines): ShellScriptAction add option to configure codebuild environment The build environment for the ShellScriptAction is hardcoded and set to LINUX_4_0. This fix allows the build environment to be specified in the ShellScriptAction fixes #10919 --- packages/@aws-cdk/pipelines/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/@aws-cdk/pipelines/README.md b/packages/@aws-cdk/pipelines/README.md index b575fcd00732d..238fa51dbc710 100644 --- a/packages/@aws-cdk/pipelines/README.md +++ b/packages/@aws-cdk/pipelines/README.md @@ -362,7 +362,8 @@ stage.addActions(new ShellScriptAction({ vpc, // Optionally specify SecurityGroups securityGroups, - // ... more configuration ... + // Optionally specify a BuildEnvironment + environment, })); ```