mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
//"os"
|
||
|
|
||
|
"github.com/SAP/jenkins-library/pkg/config"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
type versionOptions struct {
|
||
|
}
|
||
|
|
||
|
var myVersionOptions versionOptions
|
||
|
var versionStepConfigJSON string
|
||
|
|
||
|
// VersionCommand Returns the version of the piper binary
|
||
|
func VersionCommand() *cobra.Command {
|
||
|
metadata := versionMetadata()
|
||
|
var createVersionCmd = &cobra.Command{
|
||
|
Use: "version",
|
||
|
Short: "Returns the version of the piper binary",
|
||
|
Long: `Writes the commit hash and the tag (if any) to stdout and exits with 0.`,
|
||
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
||
|
return PrepareConfig(cmd, &metadata, "version", &myVersionOptions, openPiperFile)
|
||
|
},
|
||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||
|
return version(myVersionOptions)
|
||
|
},
|
||
|
}
|
||
|
|
||
|
addVersionFlags(createVersionCmd)
|
||
|
return createVersionCmd
|
||
|
}
|
||
|
|
||
|
func addVersionFlags(cmd *cobra.Command) {
|
||
|
|
||
|
}
|
||
|
|
||
|
// retrieve step metadata
|
||
|
func versionMetadata() config.StepData {
|
||
|
var theMetaData = config.StepData{
|
||
|
Spec: config.StepSpec{
|
||
|
Inputs: config.StepInputs{
|
||
|
Parameters: []config.StepParameters{},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
return theMetaData
|
||
|
}
|