buildbot_multibuild/lib/renderers.py

25 lines
543 B
Python
Raw 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
return props.getProperty("jobname", default="") != ""
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 06:57:44 +00:00
return props.getProperty("jobname", default="") != ""
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)