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/cmd/drone-agent/main.go /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
89 lines (84 sloc)
1.76 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 main | |
| import ( | |
| "fmt" | |
| "os" | |
| "github.com/drone/drone/version" | |
| _ "github.com/joho/godotenv/autoload" | |
| "github.com/urfave/cli" | |
| ) | |
| func main() { | |
| app := cli.NewApp() | |
| app.Name = "drone-agent" | |
| app.Version = version.Version.String() | |
| app.Usage = "drone agent" | |
| app.Action = loop | |
| app.Commands = []cli.Command{ | |
| { | |
| Name: "ping", | |
| Usage: "ping the agent", | |
| Action: pinger, | |
| }, | |
| } | |
| app.Flags = []cli.Flag{ | |
| cli.StringFlag{ | |
| EnvVar: "DRONE_SERVER", | |
| Name: "server", | |
| Usage: "drone server address", | |
| Value: "localhost:9000", | |
| }, | |
| cli.StringFlag{ | |
| EnvVar: "DRONE_USERNAME", | |
| Name: "username", | |
| Usage: "drone auth username", | |
| Value: "x-oauth-basic", | |
| }, | |
| cli.StringFlag{ | |
| EnvVar: "DRONE_PASSWORD,DRONE_SECRET", | |
| Name: "password", | |
| Usage: "drone auth password", | |
| }, | |
| cli.BoolTFlag{ | |
| EnvVar: "DRONE_DEBUG", | |
| Name: "debug", | |
| Usage: "start the agent in debug mode", | |
| }, | |
| cli.BoolFlag{ | |
| EnvVar: "DRONE_DEBUG_PRETTY", | |
| Name: "pretty", | |
| Usage: "enable pretty-printed debug output", | |
| }, | |
| cli.BoolTFlag{ | |
| EnvVar: "DRONE_DEBUG_NOCOLOR", | |
| Name: "nocolor", | |
| Usage: "disable colored debug output", | |
| }, | |
| cli.StringFlag{ | |
| EnvVar: "DRONE_HOSTNAME,HOSTNAME", | |
| Name: "hostname", | |
| }, | |
| cli.StringFlag{ | |
| EnvVar: "DRONE_PLATFORM", | |
| Name: "platform", | |
| Value: "linux/amd64", | |
| }, | |
| cli.StringFlag{ | |
| EnvVar: "DRONE_FILTER", | |
| Name: "filter", | |
| Usage: "filter expression used to restrict builds by label", | |
| }, | |
| cli.IntFlag{ | |
| EnvVar: "DRONE_MAX_PROCS", | |
| Name: "max-procs", | |
| Value: 1, | |
| }, | |
| cli.BoolTFlag{ | |
| EnvVar: "DRONE_HEALTHCHECK", | |
| Name: "healthcheck", | |
| Usage: "enables the healthcheck endpoint", | |
| }, | |
| } | |
| if err := app.Run(os.Args); err != nil { | |
| fmt.Fprintln(os.Stderr, err) | |
| os.Exit(1) | |
| } | |
| } |