File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 5
5
### Added
6
6
7
7
- AWS api-change: AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project.
8
+ - AWS api-change: Add ` MacArm ` environment type
8
9
9
10
### Changed
10
11
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ final class EnvironmentType
9
9
public const LINUX_CONTAINER = 'LINUX_CONTAINER ' ;
10
10
public const LINUX_GPU_CONTAINER = 'LINUX_GPU_CONTAINER ' ;
11
11
public const LINUX_LAMBDA_CONTAINER = 'LINUX_LAMBDA_CONTAINER ' ;
12
+ public const MAC_ARM = 'MAC_ARM ' ;
12
13
public const WINDOWS_CONTAINER = 'WINDOWS_CONTAINER ' ;
13
14
public const WINDOWS_SERVER_2019_CONTAINER = 'WINDOWS_SERVER_2019_CONTAINER ' ;
14
15
@@ -20,6 +21,7 @@ public static function exists(string $value): bool
20
21
self ::LINUX_CONTAINER => true ,
21
22
self ::LINUX_GPU_CONTAINER => true ,
22
23
self ::LINUX_LAMBDA_CONTAINER => true ,
24
+ self ::MAC_ARM => true ,
23
25
self ::WINDOWS_CONTAINER => true ,
24
26
self ::WINDOWS_SERVER_2019_CONTAINER => true ,
25
27
][$ value ]);
You can’t perform that action at this time.
0 commit comments