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

Side by Side 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, 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
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 import "github.com/luci/luci-go/dm/api/distributor/swarming/v1/cipd.proto";
7 import "github.com/luci/luci-go/dm/api/distributor/swarming/v1/isolate_ref.proto "; 8 import "github.com/luci/luci-go/dm/api/distributor/swarming/v1/isolate_ref.proto ";
8 9
9 package swarmingV1; 10 package swarmingV1;
10 11
11 // This is the swarming-specific result for Executions run via swarming. 12 // This is the swarming-specific result for Executions run via swarming.
12 message Result { 13 message Result {
13 int64 exit_code = 1; 14 int64 exit_code = 1;
15
16 // The isolated hash of the output directory
14 swarmingV1.IsolatedRef isolated_outdir = 2; 17 swarmingV1.IsolatedRef isolated_outdir = 2;
18
19 // The pinned cipd packages that this task actually used.
20 swarmingV1.CipdSpec cipd_pins = 3;
21
22 // The captured snapshot dimensions that the bot actually had.
23 map<string, string> snapshot_dimensions = 4;
iannucci 2016/09/26 23:15:17 this is where the pin information is preserved acr
15 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698