blob: 964cca7539a7178e4c7a1202f79a1a20709417b7 [file] [log] [blame]
// Copyright 2019 The Flutter 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 = "proto2";
package dashboard;
enum EnumBuildStatus {
success = 1;
failure = 2;
}
message BuildStatusResponse {
optional EnumBuildStatus build_status = 1;
repeated string failing_tasks = 2;
}