mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-04 23:56:30 +00:00
b4d89a1cce
closes #83 closes #240 Co-authored-by: Anbraten <anton@ju60.de> Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com> Co-authored-by: 6543 <6543@obermui.de>
28 lines
482 B
Go
28 lines
482 B
Go
package build
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/cli/common"
|
|
)
|
|
|
|
// Command exports the build command set.
|
|
var Command = &cli.Command{
|
|
Name: "build",
|
|
Usage: "manage builds",
|
|
Flags: common.GlobalFlags,
|
|
Subcommands: []*cli.Command{
|
|
buildListCmd,
|
|
buildLastCmd,
|
|
buildLogsCmd,
|
|
buildInfoCmd,
|
|
buildStopCmd,
|
|
buildStartCmd,
|
|
buildApproveCmd,
|
|
buildDeclineCmd,
|
|
buildQueueCmd,
|
|
buildKillCmd,
|
|
buildPsCmd,
|
|
buildCreateCmd,
|
|
},
|
|
}
|