Last active
September 5, 2018 14:01
-
-
Save or-shachar/fd8b0823f34d9d8b96320359ffe1b1dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": string, | |
"projectId": string, | |
"status": enum(Status), | |
"statusDetail": string, | |
"steps": [ | |
{ | |
// some steps that invoke bazel | |
} | |
], | |
"results": { | |
// THIS IS THE INTERESTING FIELD FOR INVOCATION_ID | |
"buildStepOutputs": [ | |
"BASE64_STEP_RESULTS_JSON" | |
] | |
}, | |
"createTime": string, | |
"startTime": string, | |
"finishTime": string, | |
"timeout": string, | |
"logsBucket": string, | |
"buildTriggerId": string, | |
"logUrl": string, | |
"substitutions": { | |
string: string, | |
... | |
}, | |
"tags": [ | |
string | |
], | |
"timing": { | |
string: { | |
object(TimeSpan) | |
}, | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment