1// Copyright 2020 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7package chromiumos.config.api.test.results.v1; 8 9option go_package = "go.chromium.org/chromiumos/config/go/api/test/results/v1;results"; 10 11import "google/protobuf/timestamp.proto"; 12 13// Next Tag: 7 14message Package { 15 string name = 1; 16 string version = 2; 17 18 // Hash of last commit in git repo. 19 string git_hash = 3; 20 21 // Git branch package was build from. 22 string branch = 4; 23 24 // Commit date of last commit in git repo. 25 google.protobuf.Timestamp commit_date = 5; 26 27 // For packages coming from git, indicate if the build was generated 28 // with a dirty git repo. 29 bool repo_dirty = 6; 30} 31