| OLD | NEW |
| 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; |
| 15 } | 24 } |
| OLD | NEW |