forked from aws4embeddedlinux/aws4embeddedlinux-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
26 lines (25 loc) · 812 Bytes
/
index.ts
File metadata and controls
26 lines (25 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export * from "./codebuild-embedded-linux";
export * from "./codepipeline-embedded-linux-base-image";
export * from "./codepipeline-embedded-linux";
export * from "./codepipeline-resources";
/**
* The type of project built.
*/
export enum ProjectType {
/** Build core-image-minimal from poky. */
Poky = "poky",
/** Build the Qemu meta-aws Demonstration Distribution. */
QEmu = "qemu",
/** Build an EC2 AMI */
PokyAmi = "poky-ami",
/** Build an kas based image */
Kas = "kas",
/** Build an Renesas image */
Renesas = "renesas",
/** Build an IMX image using NXP layers. */
NxpImx = "nxp-imx",
/** Build no pipeline, just CodeBuild project to connect with GitHub actions. */
CodeBuild = "codebuild",
/** Build an image using a custom buildspec and asstes. */
Custom = "custom",
}