Skip to content

Commit

Permalink
feat(codebuild): add support of Amazon Linux 2 image (#4052) (#4055)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pk authored and mergify[bot] committed Sep 13, 2019
1 parent 7ce4d99 commit f63bf6f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-codebuild/lib/project.ts
Expand Up @@ -1103,6 +1103,7 @@ interface LinuxBuildImageProps {
export class LinuxBuildImage implements IBuildImage {
public static readonly STANDARD_1_0 = LinuxBuildImage.codeBuildImage('aws/codebuild/standard:1.0');
public static readonly STANDARD_2_0 = LinuxBuildImage.codeBuildImage('aws/codebuild/standard:2.0');
public static readonly AMAZON_LINUX_2 = LinuxBuildImage.codeBuildImage('aws/codebuild/amazonlinux2-x86_64-standard:1.0');
public static readonly UBUNTU_14_04_BASE = LinuxBuildImage.codeBuildImage('aws/codebuild/ubuntu-base:14.04');
public static readonly UBUNTU_14_04_ANDROID_JAVA8_24_4_1 = LinuxBuildImage.codeBuildImage('aws/codebuild/android-java-8:24.4.1');
public static readonly UBUNTU_14_04_ANDROID_JAVA8_26_1_1 = LinuxBuildImage.codeBuildImage('aws/codebuild/android-java-8:26.1.1');
Expand Down

0 comments on commit f63bf6f

Please sign in to comment.