2017-04-29 17:03:45 +00:00
|
|
|
package build
|
2016-05-06 17:59:36 +00:00
|
|
|
|
2017-03-16 10:14:02 +00:00
|
|
|
import "github.com/urfave/cli"
|
2016-05-06 17:59:36 +00:00
|
|
|
|
2017-04-29 17:03:45 +00:00
|
|
|
// Command exports the build command set.
|
|
|
|
var Command = cli.Command{
|
2016-05-06 17:59:36 +00:00
|
|
|
Name: "build",
|
|
|
|
Usage: "manage builds",
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
buildListCmd,
|
|
|
|
buildLastCmd,
|
2017-03-07 20:55:53 +00:00
|
|
|
buildLogsCmd,
|
2016-05-06 17:59:36 +00:00
|
|
|
buildInfoCmd,
|
|
|
|
buildStopCmd,
|
|
|
|
buildStartCmd,
|
2017-03-18 09:05:49 +00:00
|
|
|
buildApproveCmd,
|
|
|
|
buildDeclineCmd,
|
2016-05-11 05:19:45 +00:00
|
|
|
buildQueueCmd,
|
2016-05-06 17:59:36 +00:00
|
|
|
},
|
|
|
|
}
|