Deploy All Step

The Deploy All step deploys all project versions (or packages) in the snapshot, which means that projects configured in release are deployed. Snapshot is created based on projects included in release. This is very important step to make pipeline reusable across releases. Deployment sequence is derived based on priority set on the release projects. You can additionally use project groups with more than one Deploy All step to control sequencing of deployments. For example, Deploy DB changes, Deploy all applications etc. Even though sequencing using priority, project groups or both is supported, it is much more easier to manage sequencing just using priority instead of using project groups.

Additionally, project (or packages) are only deployed if not already deployed to stage (environment) unless Force Deploy is checked. It is recommended to not check Force Deploy.

Field

Description

Step Name

The name of the step.

Description

An optional description for the step.

Project Groups

Identifies which group or groups from the snapshot to deploy.  The project groups are defined by the pipeline, and tagged on the projects/packages in the release.  If no groups are specified, all projects/packages from the snapshot will be included.

Exclude Project GroupsSkip deploying any projects/packages from the snapshot which are tagged in the release with the selected project group(s).  Available project groups are defined by the pipeline.
Force DeployWhether or not to force deploy the projects.  If true, this is equivalent to checking force deploy when individually deploying a project to an environment through the deploy request form.  Optionally, use a Groovy expression to make this field dynamic based on some contextual value (e.g. a property defined on the pipeline, and specified on the release).
Precondition

An optional Groovy script which determines whether the gate or step is applicable during execution. The script has access to variables and methods listed in Pipeline Groovy Variables and Methods. You can find these variables methods using Variable Lookup help.

The script must return true if the gate is applicable, or false otherwise.  If no script is provided, the default is to return true (applicable).

ContinueIf checked, any failure will be ignored, and the pipeline execution will continue to next step.
Notify Pipeline RolesSelects one or more roles from the pipeline definition to notify in case of error.  Default role members are defined on the pipeline, and optional overridden for each release.

The Deploy All step uses the priority for each project/package contained within the release.  If a deployment fails, projects or packages with a higher priority will not be submitted, and the step will fail.

If the projects have FlexFields or Inputs defined, values must be provide on the stage execution info screen.  If the values are required and not specified, the underlying workflow execution will fail.

Script Variables

Groovy script can be written for many configuration values on specific step or gate. Additionally, gate or step can be skipped by providing Precondition groovy script as well. All such groovy script has access to various variables and methods listed below on this page.

FlexDeploy version 5.2.0.3 allows for finding such variables and methods using Variable Lookup help. Prior versions allowed such help with use of  drop-down next to script input.


Variable

Description

ReleaseName

Name of the release provided when created
SnapshotNameName of the snapshot (auto generated by date and time when created)
SnapshotDuplicateFilesFlag'Y' if there are duplicate files in the snapshot, otherwise 'N'
SnapshotDescriptionDescription of the snapshot
StageExecutionId

ID of the execution

PipelineDefinitionIdPipeline Id.
PipelineNamePipeline name.
stgexec

Allows access to execution details for Gate, Step, Deploy or Utility workflows.

This variable was previously called FD_Release, which will continue to work but is deprecated now.

stgexecinfo

Allows access to details entered by user on Stage Execution Info.

It will not show any default values or FlexFields or WorkFlowInputs that are not set in the Stage Execution Info popup (The Paper Clip on the release dashboard screen)

added in 5.2.0.3

Methods for stgexec variable.

Method

Description

stgexec.getEnvironmentCode()

returns environment code

e.g. "DEV"

stgexec.getReleaseName()

returns the name of the release

e.g "December Release"

stgexec.getSnapshotName()

returns the name of the snapshot

e.g. 12-04-2019 16:21:18

stgexec.getProjectStageExecution(projectId, packageName)returns ProjectStageExecution object for given a project id and package name. Both project id and package name must match.
stgexec.getProjectStageExecution(projectName, packageName)returns ProjectStageExecution object for given a project name and package name. Both project name and package name must match.
stgexec.getSnapshotProjects()

returns list of ReleaseProjectVersion objects in the snapshot.

stgexec.getSnapshotProjectsAsString()returns all projects in snapshot concatenated in the format "ProjectName,PartialProjectName (PackageName),..."
stgexec.getSnapshotDeployedProjects()

returns list of ReleaseProjectVersion objects in the snapshot which were deployed successfully.

stgexec.getSnapshotDeployedProjectsAsString()returns all successfully deployed projects concatenated in the format "ProjectName,PartialProjectName (PackageName),..."
stgexec.getSnapshotFailedProjects()

returns list of ReleaseProjectVersion objects in the snapshot which failed to deploy.

stgexec.getSnapshotFailedProjectsAsString()returns all failed projects concatenated in the format "ProjectName,PartialProjectName (PackageName),..."
stgexec.getSnapshotSkippedProjects()

returns list of ReleaseProjectVersion objects in the snapshot which were skipped.

stgexec.getSnapshotSkippedProjectsAsString()

returns all skipped projects concatenated in the format "ProjectName,PartialProjectName (PackageName),..."

stgexec.getSnapshotNotAttemptedProjects()

returns list of ReleaseProjectVersion objects in the snapshot which were not attempted.

stgexec.getSnapshotNotAttemptedProjectsAsString()returns all not attempted projects concatenated in the format "ProjectName,PartialProjectName (PackageName),..."
stgexec.isAnyDeployFailed()returns true if any projects failed to deploy or submit.
stgexec.isAnyDeployFailed(groupName)

returns true if any projects in a specific group of projects failed to deploy or submit.

returns false if the group doesn't exist or if the group doesn't have any failed project deployments.

stgexec.isAnyDeployOrUtilityFailed()returns true if any deploy or utility workflows failed.
stgexec.isAnyDeployOrUtilityFailed(groupName)

returns true if any deploy or utility workflows in a specific group failed.

returns false if the group doesn't exist or if the group doesn't have any failed projects.

stgexec.isAnyUtilityFailed()returns true if any utility workflows failed.
stgexec.isAnyUtilityFailed(groupName)

returns true if any utility workflows in a specific group failed.

returns false if the group doesn't exist or if the group doesn't have any failed utility projects.

stgexec.isProjectDeployed(projectId)returns true only if project was deployed successfully. If partial deployment project, then if any package failed, this will return false, but if some packages were skipped and some deployed successfully this will still return true.
stgexec.isProjectDeployed(projectId, packageName)returns true if a project is deployed, given the project id and package name. If package name is not supplied, this will behave same as stgexec.isProjectDeployed(projectId) method.
stgexec.isProjectDeployed(projectName)returns true only if project was deployed successfully. If partial deployment project, then if any package failed, this will return false, but if some packages were skipped and some deployed successfully this will still return true.
stgexec.isProjectDeployed(projectName, packageName)

returns true if a project is deployed, given the project name and package name. If package name is not supplied, this will behave same as stgexec.isProjectDeployed(projectName) method.

stgexec.isProjectFailed(projectId)returns true if a project failed to deploy or submit. if skipped or not attempted, this will return false. If partial deployment project, then if any package failed, this will return true.
stgexec.isProjectFailed(projectId, packageName)

returns true if a project failed to deploy, given the project id and package name. If package name is not supplied, this will behave same as stgexec.isProjectFailed(projectId).

stgexec.isProjectFailed(projectName)returns true if a project failed to deploy or submit. if skipped or not attempted, this will return false. If partial deployment project, then if any package failed, this will return true.
stgexec.isProjectFailed(projectName, packageName)returns true if a project failed to deploy, given the project name and package name. If package name is not supplied, this will behave same as stgexec.isProjectFailed(projectName).
stgexec.isProjectSkipped(projectId)returns true if project is skipped. If partial deployment project, then if any package is skipped, this method will return true.
stgexec.isProjectSkipped(projectId, packageName)

returns true if a project is skipped, given the project id and package name. If package name is not supplied then this method will behave same as stgexec.isProjectSkipped(projectId).

stgexec.isProjectSkipped(projectName)returns true if project is skipped. If partial deployment project, then if any package is skipped, this method will return true.
stgexec.isProjectSkipped(projectName, packageName)

returns true if a project is skipped, given the project name and package name. If package name is not supplied then this method will behave same as stgexec.isProjectSkipped(projectName).

stgexec.isProjectNotAttempted(projectId)returns true if project was not attempted. If partial deployment project, then if any package is not attempted, this method will return true.
stgexec.isProjectNotAttempted(projectId, packageName)

returns true if a project was not attempted, given the project id and package name. If package name is not supplied then this method will behave same as stgexec.isProjectNotAttempted(projectId).

stgexec.isProjectNotAttempted(projectName)returns true if project was not attempted. If partial deployment project, then if any package is not attempted, this method will return true.
stgexec.isProjectNotAttempted(projectName, packageName)returns true if a project was not attempted, given the project name and package name. If package name is not supplied then this method will behave same as stgexec.isProjectNotAttempted(projectName).
stgexec.getGateStatus(gateName)

returns gate status String, "SUCCESSFUL", "RUNNING", "FAILED" or null if the gate name doesn't match or doesn't yet have a status.

note that Skipped steps that were FAILED will still return FAILED.

If an invalid gate name is given or the gate hasn't run yet, the status will be null.

isGateSuccessful(gateName)returns true if gate status is SUCCESSFUL.
isGateFailed(gateName)returns true if gate status is FAILED.
isGateSkipped(gateName)returns true if gate status is PRECOND_SKIPPED.
isAnyGateFailed()returns true if any gate failed.
isAnyGateSkipped()returns true if any gate was skipped.
stgexec.getStepStatus(stepName)

returns step status String, "SUCCESSFUL", "RUNNING", "FAILED" or null if the gate name doesn't match or doesn't yet have a status.

If an invalid step name is given or the step hasn't run yet, the status will be null.

isStepSuccessful(stepName)returns true if step status is SUCCESSFUL.
isStepFailed(stepName)returns true if step status is FAILED.
isStepSkipped(stepName)returns true if step status is PRECOND_SKIPPED.
isAnyStepFailed()returns true if any step failed.
isAnyStepSkipped()return true if any step was skipped.
stgexec.getProjectWorkflowOutputValues(outputName)

returns an array of output values with the given output name irrespective of project.

e.g. [1234123]

Note that any encrypted workflow outputs will return as "******"

stgexec.getProjectWorkflowOutputValues(projectName, outputName)

returns an array of output values with the given output name for the given project name.

e.g. [1234123]

Note that any encrypted workflow outputs will return as "******"

stgexec.getProjectWorkflowOutputMap(projectId)

returns a map of output values for the given project id. Key of map is output name and value is list of output values.

e.g. [OP1:[1,3], ENCOP2:[******, ******], BOP3:[false], DBOP4:[123.456], INOP5:[1234,123]]

Note that any encrypted workflow outputs will return as "******"

stgexec.getProjectWorkflowOutputMap(projectName)

returns a map of output values for the given project name. Key of map is output name and value is list of output values.

e.g. [OP1:[1,3], ENCOP2:[******, ******], BOP3:[false], DBOP4:[123.456], INOP5:[1234,123]]

Note that any encrypted workflow outputs will return as "******"

stgexec.getProjectWorkflowOutputMapForInstance(projectId, instanceCode)

returns a map of output values for the given project id and instance code. Key of map is output name and value is list of output values.

e.g. [OP1:[1,3], ENCOP2:[******, ******], BOP3:[false], DBOP4:[123.456], INOP5:[1234,123]]

Note that any encrypted workflow outputs will return as "******"

stgexec.areAllProjectsDeployed()returns boolean depending on if all projects in the list of ReleaseProjectVersions have been deployed successfully.
stgexec.areAllProjectsDeployed(groupName)returns boolean depending on if all projects in the list of ReleaseProjectVersions that are also in the requested group have been deployed successfully.
stgexec.convertProjectsToString(List<ReleaseProjectVersion> projects)

returns a comma delimited String of the passed projects with their package name or all files for partial deploy projects.

e.g. TestProject, TestPartialDeploy (All Files)

stgexec.getProjectIdsForName(projectName)return a list of project Ids for a specified project.

Methods for stgexecinfo variable.

Method

Description

getRelatedTicket()returns related ticket String as entered by user.
getWorkflowInputs(inputName)returns list of workflow inputs for input name irrespective of project.
getWorkflowInputMap(projectName)

returns a map of workflow input values for the given project name. Key of map is input name and value is list of input values.

getWorkflowInputMap(projectId)returns a map of workflow input values for the given project id. Key of map is input name and value is list of input values.
getWorkflowInputMap(projectId, packageName)returns a map of workflow input values for the given project id and package name. Key of map is input name and value is list of input values.
getWorkflowInputMap(projectName, packageName)returns a map of workflow input values for the given project name and package name. Key of map is input name and value is list of input values.
getFlexFields(flexfieldCode)returns list of flex field values for code irrespective of project.
getFlexFieldMap(projectId)returns a map of flex field values for the given project id. Key of map is flex field code and value is list of flex field values.
getFlexFieldMap(projectName)returns a map of flex field values for the given project name. Key of map is flex field code and value is list of flex field values.
getFlexFieldMap(projectId, packageName)returns a map of flex field values for the given project id and package name. Key of map is flex field code and value is list of flex field values.
getFlexFieldMap(projectName, packageName)

returns a map of flex field values for the given project name and package name. Key of map is flex field code and value is list of flex field values.

Methods for ProjectStageExecution object.

Method

Description

findProjectWorkflowExecutionData(workflowExecutionId)returns a ProjectWorkflowExecutionData object for the given workflowExecutionId.
getPackageName()returns String package name for the current project.
getProjectGroupNames()returns a list of the project groups for the current project.
getProjectId()returns the Long project id for the current project.
getProjectName()returns the String project name for the current project.
getProjectStreamId()returns the Long project stream Id for the current project.
getProjectStreamName()returns the String project stream name for the current project.
getProjectType()returns the String project type for the current project.
getProjectTypeEnum()

returns a ProjectTypeEnum object for the current project.

Possible Values:  GENERAL, EBS, PARTIAL_FILE, PARTIAL_JDBC, OracleForms, ORACLE_DB, ORACLE_BI, ORACLE_APEX, MFT, SALESFORCE, UTILITY, MDS, SAP, and GENERIC

getProjectVersionId()returns the Long project version for the current project.
getProjectVersionName()returns the String project version name for the current project.
getRequestStatus()returns the String request status for the current project.
getRequestStatusEnum()

returns a RequestStatusEnum object for the current project.

Possible Values:  INITIATED("Initiated"), PENDING_APPROVAL("Pending Approval"), SCHEDULED("Scheduled"), REJECTED("Rejected"), READY("Ready"), SUBMITTED("Submitted"), COMPLETED("Completed"), ABORTED("Aborted"), and FAILED("Failed");

getSubmitStatus()

returns a WorkflowRequestSubmitStatus object for the current project.

Possible Values: SUBMITFAILED, SUBMITTED, SKIPPED, PENDING

getWasForced()returns the boolean wasForced flag for the current project.
getWorkflowExecutionData()

returns a map of output values for the given workflow execution name. Key of map is workflow execution name and value is a ProjectWorkflowExecutionData object.

getWorkflowType()returns the String workflow type for the current project.
isDeployed()returns the boolean isDeployed flag for the current project.
isDeployWorkflow()returns the boolean isDeployWorkflow flag depending on if the workflow type is a deploy workflow for the current project.
isFailed()returns the boolean isFailed flag depending on if the workflow is a deploy workflow and the submission or request to deploy has failed or not.
isNotAttempted()returns the boolean isNotAttempted flag depending on if the request status and submission status is null.
IsPartialDeploy()returns the boolean isPartialDeploy flag for the current project.
isRequestAborted()returns the boolean isRequestAborted flag depending on if the requestStatus is equal to RequestStatusEnum.ABORTED.
isRequestFailed()returns the boolean isRequestFailed flag depending on if the requestStatus is equal to RequestStatusEnum.ABORTED or RequestStatusEnum.FAILED.
isRequestOrSubmitFailed()returns the boolean isRequestOrSubmitFailed flag depending on the result of isSubmitFailed() OR isRequestFailed().
isRequestSuccess()returns the boolean isRequestAborted flag depending on if the requestStatus is equal to RequestStatusEnum.COMPLETED
isSkipped()returns the boolean isSkipped flag depending on the result of isDeployWorkflow() AND isSubmitSkipped().
isSubmitFailed()returns the boolean isSubmitFailed flag depending on if the submitStatus is equal to WorkflowRequestSubmitStatus.SUBMITFAILED
isSubmitSkipped()returns the boolean isSubmitSkipped flag depending on if the submitStatus is equal to WorkflowRequestSubmitStatus.SKIPPED
isTestWorkflow()returns the boolean isTestWorkflow flag depending on if the project workflow type is "TEST".
isUtilityWorkflow()returns the boolean isUtilityWorkflow flag depending on if the project workflow type is "UTILITY".

Methods for ProjectStageExecutionData object.

Method

Description

getInstanceCode()returns the String instance code for the current project stage execution.
getInstanceid()returns the Long instance id for the current project stage execution.
getOutputValues()

returns a map of output values. Key of map is output name and value is the description. 

getWorkflowExecutionId()returns the Long workflow execution id for the current project stage execution..

Methods for ReleaseProjectVersion object.

Method

Description

getDeployPriority()returns the Integer deploy priority for the current release project.
getIsPartialDeploy()returns the Boolean isPartialDeploy flag for the current release project.
getPackageName()returns the String package name for the current release project.
getProjectGroupNames()returns a list of project group names for the current release project.
getProjectId()returns the Long project Id for the current release project.
getProjectStreamId()returns the Long project stream Id for the current release project.
getProjectStreamName()returns the String project stream name for the current release project.
getProjectType()

returns a ProjectTypeEnum object for the current release project.

Possible Values: GENERAL, EBS, PARTIAL_FILE, PARTIAL_JDBC, OracleForms, ORACLE_DB, ORACLE_BI, ORACLE_APEX, MFT, SALESFORCE, UTILITY, MDS, SAP, and GENERIC

getProjectVersionId()returns the Long project version id for the current release project.
getProjectVersionName()returns the String project version name for the current release project.
getRequestAllFiles()returns the String request all files for the current release project.
isMatch(projectId, packageName)returns the boolean isMatch flag depending on if the passed projectId and packageName match this release project's projectId and packageName. 
isMatch(projectName, packageName)returns the boolean isMatch flag depending on if the passed projectName and packageName match this release project's projectName and packageName. 
isPartialDeploy()returns the boolean isPartialDeploy flag if the isPartialDeploy instance variable is not null.

The following macros are not currently supported in the footer:
  • style