mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
return files/artifacts with build
This commit is contained in:
parent
99b10537ba
commit
825dc630b9
2 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,7 @@ type Build struct {
|
|||
Reviewer string `json:"reviewed_by" meddler:"build_reviewer"`
|
||||
Reviewed int64 `json:"reviewed_at" meddler:"build_reviewed"`
|
||||
Procs []*Proc `json:"procs,omitempty" meddler:"-"`
|
||||
Files []*File `json:"files,omitempty" meddler:"-"`
|
||||
}
|
||||
|
||||
// Trim trims string values that would otherwise exceed
|
||||
|
|
|
@ -50,8 +50,10 @@ func GetBuild(c *gin.Context) {
|
|||
c.AbortWithError(http.StatusInternalServerError, err)
|
||||
return
|
||||
}
|
||||
files, _ := store.FromContext(c).FileList(build)
|
||||
procs, _ := store.FromContext(c).ProcList(build)
|
||||
build.Procs = model.Tree(procs)
|
||||
build.Files = files
|
||||
|
||||
c.JSON(http.StatusOK, build)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue