mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-11-05 12:50:40 +00:00
c46cfdde19
I have reverted some last changes to get logging and network extraction from context separated from the pipeline again as it has been before. Feels much better to have it separated within the generated plugins.
42 lines
1.2 KiB
Go
42 lines
1.2 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, 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),
|
|
System: systemFromContext(ctx),
|
|
}
|
|
}
|