Triggered MetadataEvent "SetBRBE" when TOASTER_BRBE variable is set on bitbake server. This should make buildinfohelper aware of the build request id, which is used to properly report build status and failures back to Toaster.
Signed-off-by: Ed Bartosh <[email protected]> --- bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py index 92d9ac5..00228e9 100644 --- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py +++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py @@ -287,6 +287,9 @@ class LocalhostBEController(BuildEnvironmentController): # set variables for var in variables: bbctrl.setVariable(var.name, var.value) + if var.name == 'TOASTER_BRBE': + bbctrl.triggerEvent('bb.event.MetadataEvent("SetBRBE", "%s")' \ + % var.value) # Add 'toaster' and 'buildhistory' to INHERIT variable inherit = {item.strip() for item in bbctrl.getVariable('INHERIT').split()} -- 2.1.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
