Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(877)

Side by Side Diff: recipe_engine/arguments.proto

Issue 2378903002: Annotation protobuf code can now dump final. (Closed)
Patch Set: Rebase, add unit test. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | recipe_engine/arguments_pb2.py » ('j') | recipe_engine/stream_logdog.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The LUCI Authors. All rights reserved. 1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 syntax = "proto3"; 5 syntax = "proto3";
6 6
7 package recipe_engine; 7 package recipe_engine;
8 8
9 // Arguments is a protobuf that can be supplied to the recipe engine through its 9 // Arguments is a protobuf that can be supplied to the recipe engine through its
10 // "--operational-args-path" command-line parameter in JSONPB format. 10 // "--operational-args-path" command-line parameter in JSONPB format.
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 // The LogDog streamserver URI. 74 // The LogDog streamserver URI.
75 string streamserver_uri = 1; 75 string streamserver_uri = 1;
76 76
77 // The log stream base name. If provided, generated stream names will be 77 // The log stream base name. If provided, generated stream names will be
78 // prefixed with "<name_base>/". This must be a valid LogDog stream name. 78 // prefixed with "<name_base>/". This must be a valid LogDog stream name.
79 string name_base = 2; 79 string name_base = 2;
80 80
81 // If true, tee output through STDOUT/STDERR using inline @@@annotation@@@ 81 // If true, tee output through STDOUT/STDERR using inline @@@annotation@@@
82 // markers in addition to LogDog streaming. 82 // markers in addition to LogDog streaming.
83 bool tee = 3; 83 bool tee = 3;
84
85 // If not empty, this is a path where the final annotation protobuf should
86 // be dumped on completion.
87 string final_annotation_dump_path = 4;
84 } 88 }
85 LogDogFlags logdog = 3; 89 LogDogFlags logdog = 3;
86 } 90 }
OLDNEW
« no previous file with comments | « no previous file | recipe_engine/arguments_pb2.py » ('j') | recipe_engine/stream_logdog.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698