Lines Matching refs:steps
133 def runSteps (steps):
134 for step in steps:
230 for name, steps in recipes:
231 allSteps += steps
239 for curName, steps in recipes:
241 return (curName, steps)
286 for name, steps in RECIPES:
287 for step in steps:
292 name, steps = getAllRecipe(RECIPES) if args.recipe == "all" \
297 allSteps = (PREREQUISITES if (args.skipPrerequisites == False) else []) + steps + (POST_CHECKS if (args.skipPostCheck == False) else [])
300 print("All steps completed successfully")