mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-03-03 15:02:35 +02:00
* add read write cpe go steps * Update pkg/piperenv/CPEMap.go Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * Update pkg/piperenv/CPEMap.go Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * Update pkg/piperenv/environment.go Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> * rename file * add error handling * add error handling Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/piperenv"
|
|
"github.com/spf13/cobra"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// WritePipelineEnv Serializes the commonPipelineEnvironment JSON to disk
|
|
func WritePipelineEnv() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "writePipelineEnv",
|
|
Short: "Serializes the commonPipelineEnvironment JSON to disk",
|
|
PreRun: func(cmd *cobra.Command, args []string) {
|
|
path, _ := os.Getwd()
|
|
fatalHook := &log.FatalHook{CorrelationID: GeneralConfig.CorrelationID, Path: path}
|
|
log.RegisterHook(fatalHook)
|
|
},
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
err := runWritePipelineEnv()
|
|
if err != nil {
|
|
log.Entry().Fatalf("error when writing common Pipeline environment: %v", err)
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
func runWritePipelineEnv() error {
|
|
inBytes, err := ioutil.ReadAll(os.Stdin)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
commonPipelineEnv := piperenv.CPEMap{}
|
|
err = json.Unmarshal(inBytes, &commonPipelineEnv)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
rootPath := filepath.Join(GeneralConfig.EnvRootPath, "commonPipelineEnvironment")
|
|
err = commonPipelineEnv.WriteToDisk(rootPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
bytes, err := json.MarshalIndent(commonPipelineEnv, "", "\t")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = os.Stdout.Write(bytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|