mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ede322c8bb
* Export general configuration - part 2 First part in #956 missed to export the elements of the struct ... * Add comment for exported struct * Add function for opening config files
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/SAP/jenkins-library/pkg/config"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"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 {
|
|
log.SetStepName("version")
|
|
log.SetVerbose(GeneralConfig.Verbose)
|
|
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
|
|
}
|