1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-10-30 23:27:39 +02:00

Merge pull request #2198 from praxist/drone_filter_to_agent

Let agent pass filter expression string for builds
This commit is contained in:
Brad Rydzewski
2017-09-08 15:23:13 -07:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ func loop(c *cli.Context) error {
Labels: map[string]string{
"platform": c.String("platform"),
},
Expr: c.String("drone-filter"),
}
hostname := c.String("hostname")

View File

@@ -48,6 +48,11 @@ func main() {
Name: "platform",
Value: "linux/amd64",
},
cli.StringFlag{
EnvVar: "DRONE_FILTER",
Name: "drone-filter",
Usage: "A filter expression used to restrict builds by label",
},
cli.IntFlag{
EnvVar: "DRONE_MAX_PROCS",
Name: "max-procs",