Last Updated May 14, 2015 — DevOps Expert
DevOps

For all of those working with XL Release, you must be familiar with Gate Task. You can provide conditions in a Gate Task which have to be all checked before you can actually complete the task.
What if you could use those to programmatically check which conditions are met?  One caveat here of course would be to skip the task in case you don’t want to check all conditions.
Here’s how it works

  • Create a new XLR Template with a Gate Task and a Script task after that.
  • You can add a manual step at the start and end of the phase to stop the execution and verify results of script execution.
  • Add the following code snippet inside the Script task
def gatesBeforeTask(task):
  gatesList = []
  for item in phase.tasks:
    if str(item.getTaskType()) == "xlrelease.GateTask":
     gatesList.append(item)
    if item.id == task.id:
     break
  return gatesList
gates = gatesBeforeTask(task)
conditions = gates[0].getConditions()
for condition in conditions:
   print "Condition: " + str(condition.title) + " is : " + str(condition.isChecked()) + "n"
  • Then start a new release

Screen Shot 2015-05-14 at 2.55.45 PM

  • Continue with the manual task and complete it.
  • Next Open the Gate Task.
  • Select only gate2 and leave gate1 unchecked

Screen Shot 2015-05-14 at 2.56.18 PM

  • Skip Gate Task since you cannot complete it without both the tasks completed

Screen Shot 2015-05-14 at 2.56.41 PM

  • The script task will get executed automatically. Look at the output of script task once its completed

Screen Shot 2015-05-14 at 2.57.11 PMThis prints out the value of the conditions based on which ones were checked or not
 
Now to use the same for Pre Conditions, this is what you can do

  • Add two manual steps after the last(manual) step in your release

Screen Shot 2015-05-14 at 8.07.35 PM

  • In the first manual Step , add this code to precondition. Notice we are setting a result variable at the end of snippet
def gatesBeforeTask(task):
  gatesList = []
  for item in phase.tasks:
    if str(item.getTaskType()) == "xlrelease.GateTask":
     gatesList.append(item)
    if item.id == task.id:
     break
  return gatesList
gates = gatesBeforeTask(task)
conditions = gates[0].getConditions()
for condition in conditions:
 if condition.title == "gate2" and condition.isChecked():
    result = False
  • Now execute the steps
  • Based on the fact that the gate2 condition was checked, you would be skipping the first manual task and going directly onto second

Screen Shot 2015-05-14 at 8.09.40 PM 
You can see how the step is skipped if the result is FalseHave Fun!!

Are you ready to scale your enterprise?

Explore

What's New In The World of Digital.ai

August 4, 2023

Why Financial Services Need DevSecOps More Than Ever

With Digital.ai DevSecOps solutions, financial organizations can improve their security posture, meet regulatory requirements and focus on delivering innovative financial products.

Learn More
June 23, 2023

Governance and Compliance for DevOps at Scale

Implement a Software Chain of Custody in DevOps for compliance, traceability, and cost reduction. Gain visibility and automate processes with Digital.ai Release & Deploy.

Learn More
April 10, 2023

Continuous Delivery Implementation Done Right: Learn from National Broadband Ireland Story

Through NBI’s approach to be the best open-access operator in telecom, they have been supported by key technology partners, with automation capabilities provided by Digital.ai Release and Deploy underpinning integral aspects.

Learn More