File tree Expand file tree Collapse file tree
src/devtools/mobileharness/infra/master/central/proto Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,6 +92,9 @@ enum AllocationWorkflowStatus {
9292
9393 // The test has been released.
9494 RELEASED = 8 ;
95+
96+ // Waiting for test execution environment (e.g., Otter) to be ready.
97+ PENDING_TEST_EXEC_ENV = 9 ;
9598}
9699
97100// Contains all intermediate data generated during the allocation workflow.
@@ -131,8 +134,16 @@ message AllocationWorkflowContext {
131134 string network_zone = 4 ;
132135 }
133136
137+ // Information related to the Otter allocation step.
138+ message OtterContext {
139+ // The job ID returned by Otter when the test execution environment is
140+ // allocated.
141+ string otter_job_id = 1 ;
142+ }
143+
134144 OmnilabContext omnilab_context = 1 ;
135145 SchedukeContext scheduke_context = 2 ;
146+ OtterContext otter_context = 3 ;
136147}
137148
138149// Contains information about a failure in the allocation workflow.
You can’t perform that action at this time.
0 commit comments