Guest User

Untitled

a guest
May 21st, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. ## master.cfg
  2.  
  3. [buildout]
  4. master-parts =
  5. master
  6. rails
  7. # uncomment this to use the poller
  8. # poller
  9.  
  10. [master]
  11. recipe = collective.buildbot:master
  12. project-name = rails project
  13. allow-force = true
  14. port = 9050
  15. wport = 9080
  16. slaves =
  17. slavehost.local uboqUDeT
  18.  
  19. [rails]
  20. recipe = collective.buildbot:project
  21. slave-names = slavehost.local
  22. vcs = git
  23. repositories = git://github.com/rails/rails.git
  24.  
  25. # notifications
  26. #email-notification-sender = buildbot@slavehost.local
  27. #email-notification-recipient =
  28. # my.project@my.company.com
  29.  
  30. # run test each hour
  31. #periodic-scheduler=60
  32.  
  33. # cron build
  34. cron-scheduler = 0 8 * * *
  35.  
  36.  
  37. # You can change the sequences to build / test your app
  38. # default options should work for most buildout based projects
  39. #build-sequence =
  40. # /usr/bin/python2.5 bootstrap.py -c project.cfg
  41. # /usr/bin/python2.5 bin/buildout -c project.cfg
  42.  
  43. test-sequence =
  44. bin/test
  45. # zope.testing require exit with status
  46. # bin/test --exit-with-status
  47.  
  48. [poller]
  49. recipe = collective.buildbot:poller
  50. # dont forget to check this
  51. # since it's generated from the paster template it may be a wrong url
  52. repositories = git://
  53. #user = h4x0r
  54. #password = passwd
  55. poll-interval = 120
  56.  
  57.  
  58. ## slave.cfg
  59.  
  60. [buildout]
  61. parts = slavehost.local
  62.  
  63. [slavehost.local]
  64. recipe = collective.buildbot:slave
  65. host = localhost
  66. port = 9050
  67. password = uboqUDeT
Add Comment
Please, Sign In to add comment