mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
a7dd0bac50
* Add new output to CPE && go generate * Add published artifacts names to CPE * Add tests * Change name Co-authored-by: Vyacheslav Starostin <vyacheslav.starostin@sap.com> Co-authored-by: Ashly Mathew <ashly.mathew@sap.com> Co-authored-by: Anil Keshav <anil.keshav@sap.com>
247 lines
6.6 KiB
Go
247 lines
6.6 KiB
Go
package cmd
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"text/template"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/command"
|
|
"github.com/SAP/jenkins-library/pkg/gradle"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/piperenv"
|
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
|
)
|
|
|
|
const (
|
|
gradleBomFilename = "bom-gradle"
|
|
)
|
|
|
|
var (
|
|
bomGradleTaskName = "cyclonedxBom"
|
|
publishTaskName = "publish"
|
|
pathToModuleFile = "./build/publications/maven/module.json"
|
|
)
|
|
|
|
const publishInitScriptContentTemplate = `
|
|
rootProject {
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'java'
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
versionMapping {
|
|
usage('java-api') {
|
|
fromResolutionOf('runtimeClasspath')
|
|
}
|
|
usage('java-runtime') {
|
|
fromResolutionResult()
|
|
}
|
|
}
|
|
{{- if .ArtifactGroupID}}
|
|
groupId = '{{.ArtifactGroupID}}'
|
|
{{- end }}
|
|
{{- if .ArtifactID}}
|
|
artifactId = '{{.ArtifactID}}'
|
|
{{- end }}
|
|
{{- if .ArtifactVersion}}
|
|
version = '{{.ArtifactVersion}}'
|
|
{{- end }}
|
|
from components.java
|
|
}
|
|
}
|
|
repositories {
|
|
maven {
|
|
credentials {
|
|
username = "{{.RepositoryUsername}}"
|
|
password = "{{.RepositoryPassword}}"
|
|
}
|
|
url = "{{.RepositoryURL}}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
const bomInitScriptContent = `
|
|
initscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath "org.cyclonedx:cyclonedx-gradle-plugin:1.7.0"
|
|
}
|
|
}
|
|
|
|
rootProject {
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: org.cyclonedx.gradle.CycloneDxPlugin
|
|
|
|
cyclonedxBom {
|
|
outputName = "` + gradleBomFilename + `"
|
|
outputFormat = "xml"
|
|
schemaVersion = "1.2"
|
|
}
|
|
}
|
|
`
|
|
|
|
// PublishedArtifacts contains information about published artifacts
|
|
type PublishedArtifacts struct {
|
|
Elements []Element `json:"variants,omitempty"`
|
|
}
|
|
|
|
type Element struct {
|
|
Name string `json:"name,omitempty"`
|
|
Artifacts []Artifact `json:"files,omitempty"`
|
|
}
|
|
|
|
type Artifact struct {
|
|
Name string `json:"name,omitempty"`
|
|
}
|
|
|
|
type gradleExecuteBuildUtils interface {
|
|
command.ExecRunner
|
|
piperutils.FileUtils
|
|
}
|
|
|
|
type gradleExecuteBuildUtilsBundle struct {
|
|
*command.Command
|
|
*piperutils.Files
|
|
}
|
|
|
|
func newGradleExecuteBuildUtils() gradleExecuteBuildUtils {
|
|
utils := gradleExecuteBuildUtilsBundle{
|
|
Command: &command.Command{
|
|
StepName: "gradleExecuteBuild",
|
|
},
|
|
Files: &piperutils.Files{},
|
|
}
|
|
utils.Stdout(log.Writer())
|
|
utils.Stderr(log.Writer())
|
|
return &utils
|
|
}
|
|
|
|
func gradleExecuteBuild(config gradleExecuteBuildOptions, telemetryData *telemetry.CustomData, pipelineEnv *gradleExecuteBuildCommonPipelineEnvironment) {
|
|
utils := newGradleExecuteBuildUtils()
|
|
err := runGradleExecuteBuild(&config, telemetryData, utils, pipelineEnv)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatalf("step execution failed: %v", err)
|
|
}
|
|
}
|
|
|
|
func runGradleExecuteBuild(config *gradleExecuteBuildOptions, telemetryData *telemetry.CustomData, utils gradleExecuteBuildUtils, pipelineEnv *gradleExecuteBuildCommonPipelineEnvironment) error {
|
|
log.Entry().Info("BOM file creation...")
|
|
if config.CreateBOM {
|
|
if err := createBOM(config, utils); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
// gradle build
|
|
gradleOptions := &gradle.ExecuteOptions{
|
|
BuildGradlePath: config.Path,
|
|
Task: config.Task,
|
|
UseWrapper: config.UseWrapper,
|
|
}
|
|
if _, err := gradle.Execute(gradleOptions, utils); err != nil {
|
|
log.Entry().WithError(err).Errorf("gradle build execution was failed: %v", err)
|
|
return err
|
|
}
|
|
|
|
log.Entry().Info("Publishing of artifacts to staging repository...")
|
|
if config.Publish {
|
|
if err := publishArtifacts(config, utils, pipelineEnv); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func createBOM(config *gradleExecuteBuildOptions, utils gradleExecuteBuildUtils) error {
|
|
gradleOptions := &gradle.ExecuteOptions{
|
|
BuildGradlePath: config.Path,
|
|
Task: bomGradleTaskName,
|
|
UseWrapper: config.UseWrapper,
|
|
InitScriptContent: bomInitScriptContent,
|
|
}
|
|
if _, err := gradle.Execute(gradleOptions, utils); err != nil {
|
|
log.Entry().WithError(err).Errorf("failed to create BOM: %v", err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func publishArtifacts(config *gradleExecuteBuildOptions, utils gradleExecuteBuildUtils, pipelineEnv *gradleExecuteBuildCommonPipelineEnvironment) error {
|
|
publishInitScriptContent, err := getPublishInitScriptContent(config)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to get publish init script content: %v", err)
|
|
}
|
|
gradleOptions := &gradle.ExecuteOptions{
|
|
BuildGradlePath: config.Path,
|
|
Task: publishTaskName,
|
|
UseWrapper: config.UseWrapper,
|
|
InitScriptContent: publishInitScriptContent,
|
|
}
|
|
if _, err := gradle.Execute(gradleOptions, utils); err != nil {
|
|
log.Entry().WithError(err).Errorf("failed to publish artifacts: %v", err)
|
|
return err
|
|
}
|
|
artifacts, err := getPublishedArtifactsNames(pathToModuleFile, utils)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to get published artifacts: %v", err)
|
|
}
|
|
pipelineEnv.custom.artifacts = artifacts
|
|
return nil
|
|
}
|
|
|
|
func getPublishInitScriptContent(options *gradleExecuteBuildOptions) (string, error) {
|
|
tmpl, err := template.New("resources").Parse(publishInitScriptContentTemplate)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
var generatedCode bytes.Buffer
|
|
err = tmpl.Execute(&generatedCode, options)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return generatedCode.String(), nil
|
|
}
|
|
|
|
func getPublishedArtifactsNames(file string, utils gradleExecuteBuildUtils) (piperenv.Artifacts, error) {
|
|
artifacts := piperenv.Artifacts{}
|
|
publishedArtifacts := PublishedArtifacts{}
|
|
exists, err := utils.FileExists(file)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to check existence of the file '%s': %v", file, err)
|
|
}
|
|
if !exists {
|
|
return nil, fmt.Errorf("failed to get '%s': file does not exist", file)
|
|
}
|
|
content, err := utils.ReadFile(file)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to read '%s': %v", file, err)
|
|
}
|
|
err = json.Unmarshal(content, &publishedArtifacts)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to unmarshal '%s': %v", file, err)
|
|
}
|
|
for _, element := range publishedArtifacts.Elements {
|
|
if element.Name != "apiElements" {
|
|
continue
|
|
}
|
|
for _, artifact := range element.Artifacts {
|
|
artifacts = append(artifacts, piperenv.Artifact{Name: artifact.Name})
|
|
}
|
|
}
|
|
return artifacts, nil
|
|
}
|