Changeset 158
- Timestamp:
- 08/17/10 23:16:45 (18 months ago)
- Location:
- www/buildbot
- Files:
-
- 1 removed
- 1 modified
-
buildout.cfg (modified) (5 diffs)
-
patches (deleted)
Legend:
- Unmodified
- Added
- Removed
-
www/buildbot/buildout.cfg
r111 r158 1 # bin/buildout install collective-buildbot-patch2 1 [buildout] 3 2 extends = secret.cfg … … 5 4 buildmaster 6 5 localhost 7 plone4bio-base 8 plone4bio-buildout 6 plone4bio-base-plone3 7 plone4bio-base-plone4 8 plone4bio-buildout-plone3 9 plone4bio-buildout-plone4 9 10 svnpooler 10 11 fixperms 11 12 eggs = 12 13 buildbot 14 versions = versions 15 16 [versions] 17 buildbot = 0.7.12 18 collective.buildbot = 0.4.1 19 20 [svn] 21 root = http://plone4bio.org/svn 13 22 14 23 [svnpooler] 15 24 recipe = collective.buildbot:poller 16 25 repositories = 17 ${plone4bio-buildout:svnroot} 18 ${plone4bio-base:svnroot} 26 ${svn:root} 19 27 20 28 [buildmaster] … … 27 35 slaves = 28 36 localhost ${secret:password-trunk} 37 allow-force = True 38 max-builds = 4 29 39 30 40 [localhost] … … 34 44 password = ${secret:password-trunk} 35 45 36 [ plone4bio-buildout]46 [buildbot-project-base] 37 47 recipe = collective.buildbot:project 38 48 slave-names = 39 49 localhost 40 svnroot = http://plone4bio.org/svn 50 svnroot = ${svn:root} 51 vcs = svn 52 mail-host = localhost 53 email-notification-sender = ${secret:sender} 54 email-notification-recipient = ${secret:recipient} 55 56 [plone4bio-buildout-plone3] 57 <= buildbot-project-base 41 58 repositories = 42 ${plone4bio-buildout:svnroot}/plone4bio.buildout/trunk 43 ${plone4bio-buildout:svnroot}/plone4bio.buildout/tags/1.0 44 vcs = svn 59 ${svn:root}/plone4bio.buildout/trunk 60 ${svn:root}/plone4bio.buildout/tags/1.0 45 61 build-sequence = 46 /usr/bin/python2.4 bootstrap.py -c demo .cfg47 bin/buildout -c demo .cfg62 /usr/bin/python2.4 bootstrap.py -c demo_plone3.cfg 63 bin/buildout -c demo_plone3.cfg 48 64 test-sequence = 49 65 bin/instance test --nowarn -s plone4bio.base … … 52 68 bin/instance test --nowarn -s plone4bio.pscoils 53 69 cron-scheduler = 0 0 * * * 54 mail-host = localhost55 email-notification-sender = ${secret:sender}56 email-notification-recipient = ${secret:recipient}57 70 58 [plone4bio-base] 59 recipe = collective.buildbot:project 60 slave-names = 61 localhost 62 svnroot = http://plone4bio.org/svn 71 [plone4bio-buildout-plone4] 72 <= buildbot-project-base 63 73 repositories = 64 ${plone4bio-base:svnroot}/plone4bio.base/trunk 65 vcs = svn 74 ${svn:root}/plone4bio.buildout/trunk 66 75 build-sequence = 67 /usr/bin/python2.4 bootstrap.py 68 bin/buildout 76 /usr/bin/python2.6 bootstrap.py -c demo.cfg 77 bin/buildout -c demo.cfg 78 test-sequence = ${plone4bio-buildout-plone3:test-sequence} 79 cron-scheduler = 0 2 * * * 80 81 [plone4bio-base-plone3] 82 <= buildbot-project-base 83 repositories = 84 ${svn:root}/plone4bio.base/trunk 85 build-sequence = 86 /usr/bin/python2.4 bootstrap.py -c test-plone-3.3.x.cfg 87 bin/buildout -c test-plone-3.3.x.cfg 69 88 test-sequence = 70 89 bin/instance test --nowarn -s plone4bio.base 71 mail-host = localhost 72 email-notification-sender = ${secret:sender} 73 email-notification-recipient = ${secret:recipient} 90 cron-scheduler = 0 4 * * * 91 92 [plone4bio-base-plone4] 93 <= buildbot-project-base 94 repositories = 95 ${svn:root}/plone4bio.base/trunk 96 build-sequence = 97 /usr/bin/python2.6 bootstrap.py -c test-plone-4.0.x.cfg 98 bin/buildout -c test-plone-4.0.x.cfg 99 test-sequence = ${plone4bio-base-plone3:test-sequence} 100 cron-scheduler = 0 5 * * * 74 101 75 102 [fixperms]
