From 3822e60f2bf58e6e85328cc67d510d854d718b82 Mon Sep 17 00:00:00 2001 From: Billy Batista Date: Wed, 18 Dec 2024 14:19:08 -0500 Subject: [PATCH] chore: document which Hardware options are supported by aws builders Not my favorite solution, but we can't break ProjectService for users --- proto/depot/core/v1/project.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/depot/core/v1/project.proto b/proto/depot/core/v1/project.proto index b33a624..a136bb0 100644 --- a/proto/depot/core/v1/project.proto +++ b/proto/depot/core/v1/project.proto @@ -112,17 +112,17 @@ 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. + // 32 CPU and 64GB of memory. Supported by AWS builders. HARDWARE_32X64 = 5; }