mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-11-05 12:50:40 +00:00
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
// Copyright (c) 2019, the Drone Plugins project authors.
|
|
// Please see the AUTHORS file for details. All rights reserved.
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package urfave
|
|
|
|
import (
|
|
"github.com/drone-plugins/drone-plugin-lib/drone"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Flags has the cli.Flags for the Drone plugin.
|
|
func Flags() []cli.Flag {
|
|
flags := []cli.Flag{}
|
|
|
|
flags = append(flags, buildFlags()...)
|
|
flags = append(flags, repoFlags()...)
|
|
flags = append(flags, commitFlags()...)
|
|
flags = append(flags, stageFlags()...)
|
|
flags = append(flags, stepFlags()...)
|
|
flags = append(flags, semVerFlags()...)
|
|
flags = append(flags, calVerFlags()...)
|
|
flags = append(flags, systemFlags()...)
|
|
flags = append(flags, networkFlags()...)
|
|
flags = append(flags, loggingFlags()...)
|
|
|
|
return flags
|
|
}
|
|
|
|
// PipelineFromContext creates a drone.Pipeline from the cli.Context.
|
|
func PipelineFromContext(ctx *cli.Context) drone.Pipeline {
|
|
return drone.Pipeline{
|
|
Build: buildFromContext(ctx),
|
|
Repo: repoFromContext(ctx),
|
|
Commit: commitFromContext(ctx),
|
|
Stage: stageFromContext(ctx),
|
|
Step: stepFromContext(ctx),
|
|
SemVer: semVerFromContext(ctx),
|
|
CalVer: calVerFromContext(ctx),
|
|
System: systemFromContext(ctx),
|
|
}
|
|
}
|