""" | |
Awesome recipe, that does nothing. | |
""" | |
from slave import base_recipe | |
def GetValidBuildNames(): | |
return ['null', 'vaapp-test'] | |
def CreateRecipe(build_name: str, **kwargs): | |
return NullRecipe(**kwargs) | |
class NullRecipe(base_recipe.BaseRecipe): | |
def __init__(self, **kwargs): | |
base_recipe.BaseRecipe.__init__( | |
self, enable_build_accelerator=False, **kwargs) | |
def get_steps(self): | |
return [] |