You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	return files/artifacts with build
This commit is contained in:
		| @@ -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) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user