Skip to content

Commit

Permalink
Merge pull request #17 from depot/billy/hardware-32-64
Browse files Browse the repository at this point in the history
feat: add support for 32x64 and 64x128 hardware
  • Loading branch information
billyb2 authored Dec 18, 2024
2 parents 38bcadd + a5fa68b commit 43d11f3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions proto/depot/core/v1/project.proto
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,20 @@ message CachePolicy {

// Hardware represents the hardware configuration of a project.
enum Hardware {
// By default is 16 CPU and 32GB of memory.
// By default is 16 CPU and 32GB of memory. Supported by AWS builders.
HARDWARE_UNSPECIFIED = 0;
// 16 CPU and 32GB of memory.
// 16 CPU and 32GB of memory. Supported by AWS builders.
HARDWARE_16X32 = 1;
// 4 CPU and 4GB of memory.
HARDWARE_4X4 = 2;
// 8 CPU and 8GB of memory.
HARDWARE_8X8 = 3;
// 8 CPU and 16GB of memory.
// 8 CPU and 16GB of memory. Supported by AWS builders.
HARDWARE_8X16 = 4;
// 32 CPU and 64GB of memory. Supported by AWS builders.
HARDWARE_32X64 = 5;
// 64 CPU and 128GB of memory. Supported by AWS builders.
HARDWARE_64X128 = 6;
}

message ListTrustPoliciesRequest {
Expand Down

0 comments on commit 43d11f3

Please sign in to comment.