2020-04-03 16:34:40 +02:00
// Code generated by piper's step-generator. DO NOT EDIT.
package cmd
import (
"fmt"
"os"
"path/filepath"
"time"
"github.com/SAP/jenkins-library/pkg/config"
"github.com/SAP/jenkins-library/pkg/log"
"github.com/SAP/jenkins-library/pkg/piperenv"
2021-05-17 12:14:04 +02:00
"github.com/SAP/jenkins-library/pkg/splunk"
2020-04-03 16:34:40 +02:00
"github.com/SAP/jenkins-library/pkg/telemetry"
2021-10-01 12:49:05 +02:00
"github.com/SAP/jenkins-library/pkg/validation"
2020-04-03 16:34:40 +02:00
"github.com/spf13/cobra"
)
type artifactPrepareVersionOptions struct {
2021-10-01 12:49:05 +02:00
BuildTool string ` json:"buildTool,omitempty" validate:"oneof=custom docker dub golang maven mta npm pip sbt" `
2020-04-24 20:52:16 +02:00
CommitUserName string ` json:"commitUserName,omitempty" `
CustomVersionField string ` json:"customVersionField,omitempty" `
CustomVersionSection string ` json:"customVersionSection,omitempty" `
2021-10-01 12:49:05 +02:00
CustomVersioningScheme string ` json:"customVersioningScheme,omitempty" validate:"oneof=maven pep440 semver2" `
2020-04-24 20:52:16 +02:00
DockerVersionSource string ` json:"dockerVersionSource,omitempty" `
2021-06-02 15:41:05 +02:00
FetchCoordinates bool ` json:"fetchCoordinates,omitempty" `
2020-04-24 20:52:16 +02:00
FilePath string ` json:"filePath,omitempty" `
GlobalSettingsFile string ` json:"globalSettingsFile,omitempty" `
IncludeCommitID bool ` json:"includeCommitId,omitempty" `
M2Path string ` json:"m2Path,omitempty" `
Password string ` json:"password,omitempty" `
ProjectSettingsFile string ` json:"projectSettingsFile,omitempty" `
2020-05-06 22:07:27 +02:00
ShortCommitID bool ` json:"shortCommitId,omitempty" `
2020-04-24 20:52:16 +02:00
TagPrefix string ` json:"tagPrefix,omitempty" `
2020-05-06 22:07:27 +02:00
UnixTimestamp bool ` json:"unixTimestamp,omitempty" `
2020-04-24 20:52:16 +02:00
Username string ` json:"username,omitempty" `
VersioningTemplate string ` json:"versioningTemplate,omitempty" `
2021-10-01 12:49:05 +02:00
VersioningType string ` json:"versioningType,omitempty" validate:"oneof=cloud cloud_noTag library" `
2020-04-03 16:34:40 +02:00
}
type artifactPrepareVersionCommonPipelineEnvironment struct {
2020-05-28 10:05:22 +02:00
artifactVersion string
originalArtifactVersion string
2021-06-02 15:41:05 +02:00
artifactID string
groupID string
packaging string
2020-05-28 10:05:22 +02:00
git struct {
2020-05-07 11:21:29 +02:00
commitID string
2021-05-20 13:11:57 +02:00
headCommitID string
2020-05-07 11:21:29 +02:00
commitMessage string
2020-04-03 16:34:40 +02:00
}
}
func ( p * artifactPrepareVersionCommonPipelineEnvironment ) persist ( path , resourceName string ) {
content := [ ] struct {
category string
name string
2020-10-05 15:33:28 +02:00
value interface { }
2020-04-03 16:34:40 +02:00
} {
{ category : "" , name : "artifactVersion" , value : p . artifactVersion } ,
2020-05-28 10:05:22 +02:00
{ category : "" , name : "originalArtifactVersion" , value : p . originalArtifactVersion } ,
2021-06-02 15:41:05 +02:00
{ category : "" , name : "artifactId" , value : p . artifactID } ,
{ category : "" , name : "groupId" , value : p . groupID } ,
{ category : "" , name : "packaging" , value : p . packaging } ,
2020-04-03 16:34:40 +02:00
{ category : "git" , name : "commitId" , value : p . git . commitID } ,
2021-05-20 13:11:57 +02:00
{ category : "git" , name : "headCommitId" , value : p . git . headCommitID } ,
2020-05-07 11:21:29 +02:00
{ category : "git" , name : "commitMessage" , value : p . git . commitMessage } ,
2020-04-03 16:34:40 +02:00
}
errCount := 0
for _ , param := range content {
err := piperenv . SetResourceParameter ( path , resourceName , filepath . Join ( param . category , param . name ) , param . value )
if err != nil {
log . Entry ( ) . WithError ( err ) . Error ( "Error persisting piper environment." )
errCount ++
}
}
if errCount > 0 {
2020-04-20 16:52:57 +02:00
log . Entry ( ) . Fatal ( "failed to persist Piper environment" )
2020-04-03 16:34:40 +02:00
}
}
// ArtifactPrepareVersionCommand Prepares and potentially updates the artifact's version before building the artifact.
func ArtifactPrepareVersionCommand ( ) * cobra . Command {
2020-04-28 07:42:02 +02:00
const STEP_NAME = "artifactPrepareVersion"
2020-04-03 16:34:40 +02:00
metadata := artifactPrepareVersionMetadata ( )
var stepConfig artifactPrepareVersionOptions
var startTime time . Time
var commonPipelineEnvironment artifactPrepareVersionCommonPipelineEnvironment
2021-05-17 12:14:04 +02:00
var logCollector * log . CollectorHook
2020-04-03 16:34:40 +02:00
var createArtifactPrepareVersionCmd = & cobra . Command {
2020-04-28 07:42:02 +02:00
Use : STEP_NAME ,
2020-04-03 16:34:40 +02:00
Short : "Prepares and potentially updates the artifact's version before building the artifact." ,
Long : ` Prepares and potentially updates the artifact ' s version before building the artifact .
The continuous delivery process requires that each build is done with a unique version number .
2020-04-08 09:28:03 +02:00
There are two common patterns found :
2020-04-03 16:34:40 +02:00
2020-04-08 09:28:03 +02:00
# # # 1. Continuous Deployment pattern with automatic versioning
2020-04-03 16:34:40 +02:00
2020-04-08 09:28:03 +02:00
The team has full authority on ` + " ` " + `<major>.<minor>.<patch>` + " ` " + ` and can increase any part whenever required .
2020-09-24 07:41:06 +02:00
Nonetheless , the automatic versioning makes sure that every build will create a unique version by appending ` + " ` " + `<major>.<minor>.<patch>` + " ` " + ` with a buildversion ( we use a timestamp ) and optionally the commitId .
2020-04-03 16:34:40 +02:00
2020-04-08 09:28:03 +02:00
In order to represent this version also in the version control system the new unique version will be pushed with a dedicated tag ( ` + " ` " + `<tagPrefix><major>.<minor>.<patch><unique extension>` + " ` " + ` ) .
Depending on the build tool used and thus the allowed versioning format the ` + " ` " + `<unique extension>` + " ` " + ` varies .
* * Remarks : * *
* There is no commit to master since this would create a perpetuum mobile and just trigger the next automatic build with automatic versioning , and so on ...
* Not creating a tag would lead to a loss of the final artifact version in scm which often is not acceptable
* You need to ensure that your CI / CD system can push back to your SCM ( via providing ssh or HTTP ( s ) credentials )
2020-06-08 17:08:05 +02:00
* * This pattern is the default * * behavior ( ` + " ` " + `versioningType: cloud` + " ` " + ` ) since this is suitable for most cloud deliveries .
2020-04-08 09:28:03 +02:00
2020-09-24 07:41:06 +02:00
It is possible to use ` + " ` " + `versioningType: cloud_noTag` + " ` " + ` which has a slightly different behavior than described above :
2020-04-08 09:28:03 +02:00
* The new version will NOT be written as tag into the SCM but it is only available in the corresponding CI / CD workspace
* IMPORTANT NOTICE : Using the option ` + " ` " + `cloud_noTag` + " ` " + ` should not be picked in case you need to ensure a fully traceable path from SCM commit to your build artifact .
# # # 2. Pure version ` + " ` " + `<major>.<minor>.<patch>` + " ` " + `
This pattern is often used by teams that have cloud deliveries with no fully automated procedure , e . g . delivery after each takt .
Another typical use - case is development of a library with regular releases where the versioning pattern should be consumable and thus ideally complies to a ` + " ` " + `<major>.<minor>.<patch>` + " ` " + ` pattern .
The version is then either manually set by the team in the course of the development process or automatically pushed to master after a successful release .
2020-09-24 07:41:06 +02:00
Unlike for the _Continuous Deloyment_ pattern described above , in this case there is no dedicated tagging required for the build process since the version is already available in the repository .
2020-04-08 09:28:03 +02:00
2020-04-15 13:12:43 +02:00
Configuration of this pattern is done via ` + " ` " + `versioningType: library` + " ` " + ` .
# # # Support of additional build tools
Besides the ` + " ` " + `buildTools` + " ` " + ` provided out of the box ( like ` + " ` " + `maven` + " ` " + ` , ` + " ` " + `mta` + " ` " + ` , ` + " ` " + `npm` + " ` " + ` , ... ) it is possible to set ` + " ` " + `buildTool: custom` + " ` " + ` .
This allows you to provide automatic versioning for tools using a :
# # # # file with the version as only content :
Define ` + " ` " + `buildTool: custom` + " ` " + ` as well as ` + " ` " + `filePath: <path to your file>` + " ` " + `
* * Please note : * * ` + " ` " + `<path to your file>` + " ` " + ` need to point either to a ` + " ` " + `*.txt` + " ` " + ` file or to a file without extension .
# # # # ` + " ` " + `ini` + " ` " + ` file containing the version :
Define ` + " ` " + `buildTool: custom` + " ` " + ` , ` + " ` " + `filePath: <path to your ini-file>` + " ` " + ` as well as parameters ` + " ` " + `versionSection` + " ` " + ` and ` + " ` " + `versionSource` + " ` " + ` to point to the version location ( section & parameter name ) within the file .
* * Please note : * * ` + " ` " + `<path to your file>` + " ` " + ` need to point either to a ` + " ` " + `*.cfg` + " ` " + ` or a ` + " ` " + `*.ini` + " ` " + ` file .
# # # # ` + " ` " + `json` + " ` " + ` file containing the version :
Define ` + " ` " + `buildTool: custom` + " ` " + ` , ` + " ` " + `filePath: <path to your *.json file` + " ` " + ` as well as parameter ` + " ` " + `versionSource` + " ` " + ` to point to the parameter containing the version .
# # # # ` + " ` " + `yaml` + " ` " + ` file containing the version
Define ` + " ` " + `buildTool: custom` + " ` " + ` , ` + " ` " + `filePath: <path to your *.yml/*.yaml file` + " ` " + ` as well as parameter ` + " ` " + `versionSource` + " ` " + ` to point to the parameter containing the version . ` ,
2020-06-23 18:05:21 +02:00
PreRunE : func ( cmd * cobra . Command , _ [ ] string ) error {
2020-04-03 16:34:40 +02:00
startTime = time . Now ( )
2020-04-28 07:42:02 +02:00
log . SetStepName ( STEP_NAME )
2020-04-03 16:34:40 +02:00
log . SetVerbose ( GeneralConfig . Verbose )
2020-04-28 07:42:02 +02:00
2021-07-08 15:26:07 +02:00
GeneralConfig . GitHubAccessTokens = ResolveAccessTokens ( GeneralConfig . GitHubTokens )
2020-04-28 07:42:02 +02:00
path , _ := os . Getwd ( )
fatalHook := & log . FatalHook { CorrelationID : GeneralConfig . CorrelationID , Path : path }
log . RegisterHook ( fatalHook )
err := PrepareConfig ( cmd , & metadata , STEP_NAME , & stepConfig , config . OpenPiperFile )
2020-04-16 14:37:45 +02:00
if err != nil {
2020-06-24 10:04:05 +02:00
log . SetErrorCategory ( log . ErrorConfiguration )
2020-04-16 14:37:45 +02:00
return err
}
log . RegisterSecret ( stepConfig . Password )
log . RegisterSecret ( stepConfig . Username )
2020-05-05 08:36:24 +02:00
if len ( GeneralConfig . HookConfig . SentryConfig . Dsn ) > 0 {
sentryHook := log . NewSentryHook ( GeneralConfig . HookConfig . SentryConfig . Dsn , GeneralConfig . CorrelationID )
log . RegisterHook ( & sentryHook )
}
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
logCollector = & log . CollectorHook { CorrelationID : GeneralConfig . CorrelationID }
log . RegisterHook ( logCollector )
}
2021-10-01 12:49:05 +02:00
validation , err := validation . New ( validation . WithJSONNamesForStructFields ( ) , validation . WithPredefinedErrorMessages ( ) )
if err != nil {
return err
}
if err = validation . ValidateStruct ( stepConfig ) ; err != nil {
log . SetErrorCategory ( log . ErrorConfiguration )
return err
}
2020-04-16 14:37:45 +02:00
return nil
2020-04-03 16:34:40 +02:00
} ,
2020-06-23 18:05:21 +02:00
Run : func ( _ * cobra . Command , _ [ ] string ) {
2020-04-03 16:34:40 +02:00
telemetryData := telemetry . CustomData { }
telemetryData . ErrorCode = "1"
handler := func ( ) {
2020-10-26 15:20:04 +02:00
config . RemoveVaultSecretFiles ( )
2020-04-03 16:34:40 +02:00
commonPipelineEnvironment . persist ( GeneralConfig . EnvRootPath , "commonPipelineEnvironment" )
telemetryData . Duration = fmt . Sprintf ( "%v" , time . Since ( startTime ) . Milliseconds ( ) )
2020-09-29 13:49:40 +02:00
telemetryData . ErrorCategory = log . GetErrorCategory ( ) . String ( )
2020-04-03 16:34:40 +02:00
telemetry . Send ( & telemetryData )
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
splunk . Send ( & telemetryData , logCollector )
}
2020-04-03 16:34:40 +02:00
}
log . DeferExitHandler ( handler )
defer handler ( )
2020-04-28 07:42:02 +02:00
telemetry . Initialize ( GeneralConfig . NoTelemetry , STEP_NAME )
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
splunk . Initialize ( GeneralConfig . CorrelationID ,
GeneralConfig . HookConfig . SplunkConfig . Dsn ,
GeneralConfig . HookConfig . SplunkConfig . Token ,
GeneralConfig . HookConfig . SplunkConfig . Index ,
GeneralConfig . HookConfig . SplunkConfig . SendLogs )
}
2020-04-03 16:34:40 +02:00
artifactPrepareVersion ( stepConfig , & telemetryData , & commonPipelineEnvironment )
telemetryData . ErrorCode = "0"
2020-05-18 21:52:54 +02:00
log . Entry ( ) . Info ( "SUCCESS" )
2020-04-03 16:34:40 +02:00
} ,
}
addArtifactPrepareVersionFlags ( createArtifactPrepareVersionCmd , & stepConfig )
return createArtifactPrepareVersionCmd
}
func addArtifactPrepareVersionFlags ( cmd * cobra . Command , stepConfig * artifactPrepareVersionOptions ) {
2020-04-15 13:12:43 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . BuildTool , "buildTool" , os . Getenv ( "PIPER_buildTool" ) , "Defines the tool which is used for building the artifact. Supports `custom`, `dub`, `golang`, `maven`, `mta`, `npm`, `pip`, `sbt`." )
2020-05-25 19:48:59 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . CommitUserName , "commitUserName" , ` Project Piper ` , "Defines the user name which appears in version control for the versioning update (in case `versioningType: cloud`)." )
2020-04-24 20:52:16 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . CustomVersionField , "customVersionField" , os . Getenv ( "PIPER_customVersionField" ) , "For `buildTool: custom`: Defines the field which contains the version in the descriptor file." )
2020-04-15 13:12:43 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . CustomVersionSection , "customVersionSection" , os . Getenv ( "PIPER_customVersionSection" ) , "For `buildTool: custom`: Defines the section for version retrieval in vase a *.ini/*.cfg file is used." )
2021-10-01 12:49:05 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . CustomVersioningScheme , "customVersioningScheme" , ` maven ` , "For `buildTool: custom`: Defines the versioning scheme to be used." )
2020-04-15 13:12:43 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . DockerVersionSource , "dockerVersionSource" , os . Getenv ( "PIPER_dockerVersionSource" ) , "For `buildTool: docker`: Defines the source of the version. Can be `FROM`, any supported _buildTool_ or an environment variable name." )
2021-06-02 15:41:05 +02:00
cmd . Flags ( ) . BoolVar ( & stepConfig . FetchCoordinates , "fetchCoordinates" , false , "If set to `true` the step will retreive artifact coordinates and store them in the common pipeline environment." )
2020-04-08 09:28:03 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . FilePath , "filePath" , os . Getenv ( "PIPER_filePath" ) , "Defines a custom path to the descriptor file. Build tool specific defaults are used (e.g. `maven: pom.xml`, `npm: package.json`, `mta: mta.yaml`)." )
2020-04-03 16:34:40 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . GlobalSettingsFile , "globalSettingsFile" , os . Getenv ( "PIPER_globalSettingsFile" ) , "Maven only - Path to the mvn settings file that should be used as global settings file." )
2020-04-08 09:28:03 +02:00
cmd . Flags ( ) . BoolVar ( & stepConfig . IncludeCommitID , "includeCommitId" , true , "Defines if the automatically generated version (`versioningType: cloud`) should include the commit id hash." )
2020-04-03 16:34:40 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . M2Path , "m2Path" , os . Getenv ( "PIPER_m2Path" ) , "Maven only - Path to the location of the local repository that should be used." )
2020-04-08 09:28:03 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . Password , "password" , os . Getenv ( "PIPER_password" ) , "Password/token for git authentication." )
2020-04-03 16:34:40 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . ProjectSettingsFile , "projectSettingsFile" , os . Getenv ( "PIPER_projectSettingsFile" ) , "Maven only - Path to the mvn settings file that should be used as project settings file." )
2020-05-06 22:07:27 +02:00
cmd . Flags ( ) . BoolVar ( & stepConfig . ShortCommitID , "shortCommitId" , false , "Defines if a short version of the commitId should be used. GitHub format is used (first 7 characters)." )
2020-05-25 19:48:59 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . TagPrefix , "tagPrefix" , ` build_ ` , "Defines the prefix which is used for the git tag which is written during the versioning run (only `versioningType: cloud`)." )
2020-05-06 22:07:27 +02:00
cmd . Flags ( ) . BoolVar ( & stepConfig . UnixTimestamp , "unixTimestamp" , false , "Defines if the Unix timestamp number should be used as build number instead of the standard date format." )
2020-04-03 16:34:40 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . Username , "username" , os . Getenv ( "PIPER_username" ) , "User name for git authentication" )
cmd . Flags ( ) . StringVar ( & stepConfig . VersioningTemplate , "versioningTemplate" , os . Getenv ( "PIPER_versioningTemplate" ) , "DEPRECATED: Defines the template for the automatic version which will be created" )
2020-06-08 17:08:05 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . VersioningType , "versioningType" , ` cloud ` , "Defines the type of versioning (`cloud`: fully automatic, `cloud_noTag`: automatic but no tag created, `library`: manual, i.e. the pipeline will pick up the version from the build descriptor, but not generate a new version)" )
2020-04-03 16:34:40 +02:00
cmd . MarkFlagRequired ( "buildTool" )
}
// retrieve step metadata
func artifactPrepareVersionMetadata ( ) config . StepData {
var theMetaData = config . StepData {
Metadata : config . StepMetadata {
2020-11-20 09:13:59 +02:00
Name : "artifactPrepareVersion" ,
Aliases : [ ] config . Alias { { Name : "artifactSetVersion" , Deprecated : false } , { Name : "setVersion" , Deprecated : true } } ,
Description : "Prepares and potentially updates the artifact's version before building the artifact." ,
2020-04-03 16:34:40 +02:00
} ,
Spec : config . StepSpec {
Inputs : config . StepInputs {
2021-06-16 08:43:30 +02:00
Secrets : [ ] config . StepSecrets {
{ Name : "gitHttpsCredentialsId" , Description : "Jenkins 'Username with password' credentials ID containing username/password for http access to your git repository." , Type : "jenkins" } ,
{ Name : "gitSshKeyCredentialsId" , Description : "Jenkins 'SSH Username with private key' credentials ID ssh key for accessing your git repository. You can find details about how to generate an ssh key in the [GitHub documentation](https://docs.github.com/en/enterprise/2.15/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." , Type : "jenkins" , Aliases : [ ] config . Alias { { Name : "gitCredentialsId" , Deprecated : true } } } ,
} ,
2020-04-03 16:34:40 +02:00
Parameters : [ ] config . StepParameters {
{
Name : "buildTool" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "GENERAL" , "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_buildTool" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
2020-04-08 09:28:03 +02:00
Name : "commitUserName" ,
2020-04-03 16:34:40 +02:00
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
2020-04-08 09:28:03 +02:00
Aliases : [ ] config . Alias { { Name : "gitUserName" } } ,
2021-06-16 08:43:30 +02:00
Default : ` Project Piper ` ,
2020-04-03 16:34:40 +02:00
} ,
2020-04-15 13:12:43 +02:00
{
2020-04-24 20:52:16 +02:00
Name : "customVersionField" ,
2020-04-15 13:12:43 +02:00
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_customVersionField" ) ,
2020-04-15 13:12:43 +02:00
} ,
{
Name : "customVersionSection" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
2020-04-24 20:52:16 +02:00
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_customVersionSection" ) ,
2020-04-24 20:52:16 +02:00
} ,
{
Name : "customVersioningScheme" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
2020-04-15 13:12:43 +02:00
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-10-01 12:49:05 +02:00
Default : ` maven ` ,
2020-04-15 13:12:43 +02:00
} ,
2020-04-03 16:34:40 +02:00
{
2020-04-08 09:28:03 +02:00
Name : "dockerVersionSource" ,
2020-04-03 16:34:40 +02:00
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_dockerVersionSource" ) ,
2020-04-03 16:34:40 +02:00
} ,
2021-06-02 15:41:05 +02:00
{
Name : "fetchCoordinates" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "bool" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : false ,
2021-06-02 15:41:05 +02:00
} ,
2020-04-03 16:34:40 +02:00
{
2020-04-08 09:28:03 +02:00
Name : "filePath" ,
2020-04-03 16:34:40 +02:00
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_filePath" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
Name : "globalSettingsFile" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "GENERAL" , "STEPS" , "STAGES" , "PARAMETERS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { { Name : "maven/globalSettingsFile" } } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_globalSettingsFile" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
Name : "includeCommitId" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "bool" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : true ,
2020-04-03 16:34:40 +02:00
} ,
{
Name : "m2Path" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "GENERAL" , "STEPS" , "STAGES" , "PARAMETERS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { { Name : "maven/m2Path" } } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_m2Path" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
2020-09-16 14:50:09 +02:00
Name : "password" ,
ResourceRef : [ ] config . ResourceReference {
{
Name : "gitHttpsCredentialsId" ,
Param : "password" ,
Type : "secret" ,
} ,
2020-10-13 14:14:47 +02:00
{
2021-09-21 13:06:32 +02:00
Name : "gitHttpsCredentialVaultSecretName" ,
Type : "vaultSecret" ,
Default : "gitHttpsCredential" ,
2020-10-13 14:14:47 +02:00
} ,
2020-09-16 14:50:09 +02:00
} ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_password" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
Name : "projectSettingsFile" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "GENERAL" , "STEPS" , "STAGES" , "PARAMETERS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { { Name : "maven/projectSettingsFile" } } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_projectSettingsFile" ) ,
2020-04-03 16:34:40 +02:00
} ,
2020-05-06 22:07:27 +02:00
{
Name : "shortCommitId" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "STEPS" , "STAGES" , "PARAMETERS" } ,
Type : "bool" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : false ,
2020-05-06 22:07:27 +02:00
} ,
2020-04-03 16:34:40 +02:00
{
Name : "tagPrefix" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : ` build_ ` ,
2020-04-03 16:34:40 +02:00
} ,
2020-05-06 22:07:27 +02:00
{
Name : "unixTimestamp" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "STEPS" , "STAGES" , "PARAMETERS" } ,
Type : "bool" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : false ,
2020-05-06 22:07:27 +02:00
} ,
2020-04-03 16:34:40 +02:00
{
2020-09-16 14:50:09 +02:00
Name : "username" ,
ResourceRef : [ ] config . ResourceReference {
{
Name : "gitHttpsCredentialsId" ,
Param : "username" ,
Type : "secret" ,
} ,
2020-10-13 14:14:47 +02:00
{
2021-09-21 13:06:32 +02:00
Name : "gitHttpsCredentialVaultSecretName" ,
Type : "vaultSecret" ,
Default : "gitHttpsCredential" ,
2020-10-13 14:14:47 +02:00
} ,
2020-09-16 14:50:09 +02:00
} ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_username" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
Name : "versioningTemplate" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_versioningTemplate" ) ,
2020-04-03 16:34:40 +02:00
} ,
{
Name : "versioningType" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : ` cloud ` ,
2020-04-03 16:34:40 +02:00
} ,
} ,
} ,
2020-11-20 09:13:59 +02:00
Containers : [ ] config . Container {
{ Image : "maven:3.6-jdk-8" , Conditions : [ ] config . Condition { { ConditionRef : "strings-equal" , Params : [ ] config . Param { { Name : "buildTool" , Value : "maven" } } } } } ,
} ,
Outputs : config . StepOutputs {
Resources : [ ] config . StepResources {
{
Name : "commonPipelineEnvironment" ,
Type : "piperEnvironment" ,
Parameters : [ ] map [ string ] interface { } {
{ "Name" : "artifactVersion" } ,
{ "Name" : "originalArtifactVersion" } ,
2021-06-02 15:41:05 +02:00
{ "Name" : "artifactId" } ,
{ "Name" : "groupId" } ,
{ "Name" : "packaging" } ,
2020-11-20 09:13:59 +02:00
{ "Name" : "git/commitId" } ,
2021-05-20 13:11:57 +02:00
{ "Name" : "git/headCommitId" } ,
2020-11-20 09:13:59 +02:00
{ "Name" : "git/commitMessage" } ,
} ,
} ,
} ,
} ,
2020-04-03 16:34:40 +02:00
} ,
}
return theMetaData
}