Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
drone-cli/drone/build/build_info.go /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
76 lines (67 sloc)
1.46 KB
This file contains 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
| package build | |
| import ( | |
| "os" | |
| "strconv" | |
| "text/template" | |
| "github.com/drone/drone-cli/drone/internal" | |
| "github.com/drone/funcmap" | |
| "github.com/urfave/cli" | |
| ) | |
| var buildInfoCmd = cli.Command{ | |
| Name: "info", | |
| Usage: "show build details", | |
| ArgsUsage: "<repo/name> [build]", | |
| Action: buildInfo, | |
| Flags: []cli.Flag{ | |
| cli.StringFlag{ | |
| Name: "format", | |
| Usage: "format output", | |
| Value: tmplBuildInfo, | |
| }, | |
| }, | |
| } | |
| func buildInfo(c *cli.Context) error { | |
| repo := c.Args().First() | |
| owner, name, err := internal.ParseRepo(repo) | |
| if err != nil { | |
| return err | |
| } | |
| buildArg := c.Args().Get(1) | |
| client, err := internal.NewClient(c) | |
| if err != nil { | |
| return err | |
| } | |
| var number int | |
| if buildArg == "last" || len(buildArg) == 0 { | |
| // Fetch the build number from the last build | |
| build, err := client.BuildLast(owner, name, "") | |
| if err != nil { | |
| return err | |
| } | |
| number = int(build.Number) | |
| } else { | |
| number, err = strconv.Atoi(buildArg) | |
| if err != nil { | |
| return err | |
| } | |
| } | |
| build, err := client.Build(owner, name, number) | |
| if err != nil { | |
| return err | |
| } | |
| tmpl, err := template.New("_").Funcs(funcmap.Funcs).Parse(c.String("format")) | |
| if err != nil { | |
| return err | |
| } | |
| return tmpl.Execute(os.Stdout, build) | |
| } | |
| // template for build information | |
| var tmplBuildInfo = `Number: {{ .Number }} | |
| Status: {{ .Status }} | |
| Event: {{ .Event }} | |
| Commit: {{ .After }} | |
| Branch: {{ .Target }} | |
| Ref: {{ .Ref }} | |
| Author: {{ .Author }} {{ if .AuthorEmail }}<{{.AuthorEmail}}>{{ end }} | |
| Message: {{ .Message }} | |
| ` |