buildbot_multibuild/lib/renderers.py

25 lines
552 B
Python
Raw Permalink Normal View History

2021-12-23 08:01:52 +00:00
from buildbot.plugins import util
import re
@util.renderer
2021-12-25 06:57:44 +00:00
def is_build_script_available(props):
# Actual check will got here
2021-12-25 11:21:52 +00:00
return props.getProperty("build_available", default=False)
2021-12-23 08:01:52 +00:00
@util.renderer
2021-12-25 06:57:44 +00:00
def isnt_build_script_available(props):
return not is_build_script_available(props)
2021-12-23 08:01:52 +00:00
@util.renderer
2021-12-25 06:57:44 +00:00
def is_test_script_available(props):
2021-12-23 08:01:52 +00:00
# Actual check will got here
2021-12-25 11:21:52 +00:00
return props.getProperty("test_available", default=False)
2021-12-25 06:57:44 +00:00
2021-12-23 08:01:52 +00:00
@util.renderer
2021-12-25 06:57:44 +00:00
def isnt_test_script_available(props):
return not is_test_script_available(props)