Guest User

Untitled

a guest
May 21st, 2018
252
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 = [email protected]
  27. #email-notification-recipient =
  28.  
  29. # run test each hour
  30. #periodic-scheduler=60
  31.  
  32. # cron build
  33. cron-scheduler = 0 8 * * *
  34.  
  35.  
  36. # You can change the sequences to build / test your app
  37. # default options should work for most buildout based projects
  38. #build-sequence =
  39. # /usr/bin/python2.5 bootstrap.py -c project.cfg
  40. # /usr/bin/python2.5 bin/buildout -c project.cfg
  41.  
  42. test-sequence =
  43. bin/test
  44. # zope.testing require exit with status
  45. # bin/test --exit-with-status
  46.  
  47. [poller]
  48. recipe = collective.buildbot:poller
  49. # dont forget to check this
  50. # since it's generated from the paster template it may be a wrong url
  51. repositories = git://
  52. #user = h4x0r
  53. #password = passwd
  54. poll-interval = 120
  55.  
  56.  
  57. ## slave.cfg
  58.  
  59. [buildout]
  60. parts = slavehost.local
  61.  
  62. [slavehost.local]
  63. recipe = collective.buildbot:slave
  64. host = localhost
  65. port = 9050
  66. password = uboqUDeT
Add Comment
Please, Sign In to add comment