mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
76c2a85c79
* Add new pipeline step * new pipeline stage * Cleanup Test * Adding new step to pipeline - stage publish * Move from Publish to Build * Adjusting documentation for move from publish to build * Change Release with Confirm Step in Build Stage * codeclimate * Code Climate * Code Climate spaces * Adjusting for Check if package is released in AssemblyConfirm Co-authored-by: tiloKo <70266685+tiloKo@users.noreply.github.com>
123 lines
3.9 KiB
Go
123 lines
3.9 KiB
Go
package cmd
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
abapbuild "github.com/SAP/jenkins-library/pkg/abap/build"
|
|
"github.com/SAP/jenkins-library/pkg/abaputils"
|
|
"github.com/SAP/jenkins-library/pkg/command"
|
|
piperhttp "github.com/SAP/jenkins-library/pkg/http"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func abapEnvironmentAssembleConfirm(config abapEnvironmentAssembleConfirmOptions, telemetryData *telemetry.CustomData, cpe *abapEnvironmentAssembleConfirmCommonPipelineEnvironment) {
|
|
// for command execution use Command
|
|
c := command.Command{}
|
|
// reroute command output to logging framework
|
|
c.Stdout(log.Writer())
|
|
c.Stderr(log.Writer())
|
|
|
|
var autils = abaputils.AbapUtils{
|
|
Exec: &c,
|
|
}
|
|
|
|
client := piperhttp.Client{}
|
|
err := runAbapEnvironmentAssembleConfirm(&config, telemetryData, &autils, &client, cpe)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatal("step execution failed")
|
|
}
|
|
}
|
|
|
|
func runAbapEnvironmentAssembleConfirm(config *abapEnvironmentAssembleConfirmOptions, telemetryData *telemetry.CustomData, com abaputils.Communication, client piperhttp.Sender, cpe *abapEnvironmentAssembleConfirmCommonPipelineEnvironment) error {
|
|
conn := new(abapbuild.Connector)
|
|
var connConfig abapbuild.ConnectorConfiguration
|
|
connConfig.CfAPIEndpoint = config.CfAPIEndpoint
|
|
connConfig.CfOrg = config.CfOrg
|
|
connConfig.CfSpace = config.CfSpace
|
|
connConfig.CfServiceInstance = config.CfServiceInstance
|
|
connConfig.CfServiceKeyName = config.CfServiceKeyName
|
|
connConfig.Host = config.Host
|
|
connConfig.Username = config.Username
|
|
connConfig.Password = config.Password
|
|
connConfig.AddonDescriptor = config.AddonDescriptor
|
|
connConfig.MaxRuntimeInMinutes = config.MaxRuntimeInMinutes
|
|
|
|
err := conn.InitBuildFramework(connConfig, com, client)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var addonDescriptor abaputils.AddonDescriptor
|
|
err = json.Unmarshal([]byte(config.AddonDescriptor), &addonDescriptor)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
delayBetweenPostsInSeconds := time.Duration(3 * time.Second)
|
|
builds, err := startingConfirm(addonDescriptor.Repositories, *conn, delayBetweenPostsInSeconds)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
maxRuntimeInMinutes := time.Duration(config.MaxRuntimeInMinutes) * time.Minute
|
|
pollIntervalsInSeconds := time.Duration(60 * time.Second)
|
|
err = polling(builds, maxRuntimeInMinutes, pollIntervalsInSeconds)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = checkIfFailedAndPrintLogs(builds)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func startingConfirm(repos []abaputils.Repository, conn abapbuild.Connector, delayBetweenPostsInSeconds time.Duration) ([]buildWithRepository, error) {
|
|
var builds []buildWithRepository
|
|
var buildsAlreadyReleased []buildWithRepository
|
|
for _, repo := range repos {
|
|
assemblyBuild := abapbuild.Build{
|
|
Connector: conn,
|
|
}
|
|
buildRepo := buildWithRepository{
|
|
build: assemblyBuild,
|
|
repo: repo,
|
|
}
|
|
if repo.Status != "R" {
|
|
err := buildRepo.startConfirm()
|
|
if err != nil {
|
|
return builds, err
|
|
}
|
|
builds = append(builds, buildRepo)
|
|
} else {
|
|
log.Entry().Infof("Packages %s is in status '%s'. No need assembly done, no need to confirm", repo.PackageName, repo.Status)
|
|
buildsAlreadyReleased = append(buildsAlreadyReleased, buildRepo)
|
|
}
|
|
|
|
//as batch events in the ABAP Backend need a little time
|
|
time.Sleep(delayBetweenPostsInSeconds)
|
|
}
|
|
return builds, nil
|
|
}
|
|
|
|
func (b *buildWithRepository) startConfirm() error {
|
|
if b.repo.Name == "" || b.repo.Namespace == "" || b.repo.PackageName == "" {
|
|
return errors.New("Parameters missing. Please provide software component name, namespace and packagename")
|
|
}
|
|
valuesInput := abapbuild.Values{
|
|
Values: []abapbuild.Value{
|
|
{
|
|
ValueID: "SWC",
|
|
Value: b.repo.Name,
|
|
},
|
|
{
|
|
ValueID: "SSDC-delta",
|
|
Value: b.repo.Namespace + b.repo.PackageName,
|
|
},
|
|
},
|
|
}
|
|
phase := "BUILD_CONFIRM"
|
|
log.Entry().Infof("Starting confirmation of package %s", b.repo.PackageName)
|
|
return b.build.Start(phase, valuesInput)
|
|
}
|