summaryrefslogtreecommitdiff
path: root/scripts/pokyABConfig.py
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-05-01 09:49:43 +0000
committerRichard Purdie <richard@openedhand.com>2008-05-01 09:49:43 +0000
commitd9bb8113c53339f9b30a357f21e2eb269957e56e (patch)
tree38331f1faa04e60cadc0dc36149ce5a31961c926 /scripts/pokyABConfig.py
parent732e3cab7a9f6d18d59adba0e5dc17720b6f7e19 (diff)
downloadopenembedded-core-d9bb8113c53339f9b30a357f21e2eb269957e56e.tar.gz
openembedded-core-d9bb8113c53339f9b30a357f21e2eb269957e56e.tar.bz2
openembedded-core-d9bb8113c53339f9b30a357f21e2eb269957e56e.tar.xz
openembedded-core-d9bb8113c53339f9b30a357f21e2eb269957e56e.zip
scripts: Add meta-darwin build to the autobuilder
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4380 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/pokyABConfig.py')
-rw-r--r--scripts/pokyABConfig.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/scripts/pokyABConfig.py b/scripts/pokyABConfig.py
index 1b5aec065..00898d49d 100644
--- a/scripts/pokyABConfig.py
+++ b/scripts/pokyABConfig.py
@@ -101,6 +101,16 @@ runImage(f6, 'qemux86', 'meta-toolchain-sdk')
runImage(f6, 'qemuarm', 'world -c checkuriall')
runComplete(f6)
+from buildbot.process import step, factory
+f7 = factory.BuildFactory()
+f7.addStep(step.SVN, svnurl="http://svn.o-hand.com/repos/poky/trunk", mode="copy", timeout=10000)
+runPreamble(f7)
+defaultenv['DISTRO'] = 'poky'
+defaultenv['POKYLIBC'] = 'dummy'
+runImage(f7, 'ipodtouch', 'meta-clutter')
+defaultenv['POKYLIBC'] = 'glibc'
+runComplete(f7)
+
#from buildbot.process import step, factory
#f7 = factory.BuildFactory()
#f7.addStep(step.SVN, svnurl="http://svn.o-hand.com/repos/poky/trunk", timeout=10000)
@@ -134,11 +144,17 @@ b6 = {'name': "poky-toolchain-shihtzu",
'factory': f6
}
+b7 = {'name': "poky-full-darwin-shihtzu",
+ 'slavename': "shihtzu-autobuild",
+ 'builddir': "full-darwin-shihtzu",
+ 'factory': f7
+ }
+
#b7 = {'name': "poky-incremental-world-shihtzu",
# 'slavename': "shihtzu-autobuild",
# 'builddir': "incremental-world-shihtzu",
# 'factory': f7
# }
-poky_builders = [b3, b4, b5, b6]
+poky_builders = [b3, b4, b5, b6, b7]