| OLD | NEW |
| 1 // Copyright 2017 The LUCI Authors. All rights reserved. | 1 // Copyright 2017 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 package model | 5 package model |
| 6 | 6 |
| 7 import ( | 7 import ( |
| 8 "time" | 8 "time" |
| 9 | 9 |
| 10 "github.com/luci/gae/service/datastore" | 10 "github.com/luci/gae/service/datastore" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 CurrentStep Summary | 78 CurrentStep Summary |
| 79 | 79 |
| 80 // Manifests is a list of links to source manifests that this build repo
rted. | 80 // Manifests is a list of links to source manifests that this build repo
rted. |
| 81 Manifests []ManifestLink | 81 Manifests []ManifestLink |
| 82 | 82 |
| 83 // Patches is the list of patches which are associated with this build. | 83 // Patches is the list of patches which are associated with this build. |
| 84 // We reserve the multi-patch case for advanced (multi-repo) tryjobs... | 84 // We reserve the multi-patch case for advanced (multi-repo) tryjobs... |
| 85 // Typically there will only be one patch associated with a build. | 85 // Typically there will only be one patch associated with a build. |
| 86 Patches []PatchInfo | 86 Patches []PatchInfo |
| 87 } | 87 } |
| OLD | NEW |