blob: 943134fd319747ac28a0ec8d5d55fd4606e6b6ff [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package test_platform.steps.execute;
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
option go_package = "go.chromium.org/chromiumos/infra/proto/go/test_platform/steps/execute";
// Build contains fields extracted from
// https://chromium.googlesource.com/infra/luci/luci-go/+/master/buildbucket/proto/build.proto
message Build {
google.protobuf.Timestamp create_time = 1;
google.protobuf.Timestamp start_time = 2;
google.protobuf.Duration execution_timeout = 3;
}