cherry-pick BuildLogMsg

This commit is contained in:
Graham Christensen 2018-01-19 09:44:44 -05:00
parent fc0e89ce01
commit 67869640ec
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,9 @@
use ofborg::message::{Pr,Repo};
#[derive(Serialize, Deserialize, Debug)]
pub struct BuildLogMsg {
pub line_number: u64,
pub output: String,
pub identity: String,
pub system: String,
}

View file

@ -3,6 +3,6 @@ pub mod buildjob;
pub mod buildresult;
pub mod massrebuildjob;
pub mod plasticheartbeat;
pub mod buildlogmsg;
pub use self::common::{Pr,Repo};