Get Builds
GET /build/:author/:repository/:branch/:build
Get the specific build information of a project.
Path parameters
Name | Type | Description |
---|---|---|
author | string | The project author. |
repository | string | The project repository. |
branch | string | The project branch. |
build | number | "latest" |
Response data schema
{
"id": number, // the build number
"commit": string, // the commit hash this build is built on
"author": string, // the commit author
"timestamp": number, // the commit timestamp
"message": string, // the commit message
"success": boolean, // whether this build is successful
"buildTimestamp": number, // the timestamp of this build
"target": string, // the build artifact filename
"sha1": string // the sha1 hash of the build artifact
}