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

Unified Diff: dm/api/distributor/swarming/v1/result.proto

Issue 2338153003: Add snapshotting for CIPD packages and dimensions to DM. (Closed)
Patch Set: Remove cleanup noise Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: dm/api/distributor/swarming/v1/result.proto
diff --git a/dm/api/distributor/swarming/v1/result.proto b/dm/api/distributor/swarming/v1/result.proto
index cf16d620d323f380d9303a9ba3d85b67c39af2ec..56809404e7d489cde67b0e4f5c2ed6165a0ef6c7 100644
--- a/dm/api/distributor/swarming/v1/result.proto
+++ b/dm/api/distributor/swarming/v1/result.proto
@@ -4,6 +4,7 @@
syntax = "proto3";
+import "github.com/luci/luci-go/dm/api/distributor/swarming/v1/cipd.proto";
import "github.com/luci/luci-go/dm/api/distributor/swarming/v1/isolate_ref.proto";
package swarmingV1;
@@ -11,5 +12,13 @@ package swarmingV1;
// This is the swarming-specific result for Executions run via swarming.
message Result {
int64 exit_code = 1;
+
+ // The isolated hash of the output directory
swarmingV1.IsolatedRef isolated_outdir = 2;
+
+ // The pinned cipd packages that this task actually used.
+ swarmingV1.CipdSpec cipd_pins = 3;
+
+ // The captured snapshot dimensions that the bot actually had.
+ map<string, string> snapshot_dimensions = 4;
iannucci 2016/09/26 23:15:17 this is where the pin information is preserved acr
}

Powered by Google App Engine
This is Rietveld 408576698