I have noticed in the nightly buildbot failure reports for ppc & mips that the build names are switched (e.g., nightly-mips triggers the nightly-ppc build and vice versa).

The name and builderNames appear to be switched in yoctoABConfig.py, and I think this patch will correct this one.


Signed-off-by: Robert Cochran<yo...@mindchasers.com>
---
yocto-master/yoctoABConfig.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/yocto-master/yoctoABConfig.py b/yocto-master/yoctoABConfig.py
index 0d4ed13..2e0cf27 100644
--- a/yocto-master/yoctoABConfig.py
+++ b/yocto-master/yoctoABConfig.py
@@ -864,8 +864,8 @@ yocto_builders.append(b65)
yocto_sched.append(triggerable.Triggerable(name="nightly-x86", builderNames=["nightly-x86"])) yocto_sched.append(triggerable.Triggerable(name="nightly-x86-64", builderNames=["nightly-x86-64"])) yocto_sched.append(triggerable.Triggerable(name="nightly-arm", builderNames=["nightly-arm"])) -yocto_sched.append(triggerable.Triggerable(name="nightly-ppc", builderNames=["nightly-mips"])) -yocto_sched.append(triggerable.Triggerable(name="nightly-mips", builderNames=["nightly-ppc"])) +yocto_sched.append(triggerable.Triggerable(name="nightly-mips", builderNames=["nightly-mips"])) +yocto_sched.append(triggerable.Triggerable(name="nightly-ppc", builderNames=["nightly-ppc"])) yocto_sched.append(triggerable.Triggerable(name="eclipse-plugin", builderNames=["eclipse-plugin"]))


################################################################################
--
1.7.5.4

_______________________________________________
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto

Reply via email to