Guest User

Untitled

a guest
Apr 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. ---
  2. # Server-wide configuration
  3. system:
  4. # Each build gets a named folder under here
  5. build-root: /buildsystem/builds
  6.  
  7. # Allow property sets
  8. properties: &some-property-bag
  9. name1: value1
  10. name2: value2
  11.  
  12. properties: &some-other-property-bag
  13. name1: value1
  14. name2: value2
  15.  
  16.  
  17. # Actual builds... or references to separate config files
  18. builds:
  19. build:
  20. name: easy-baker-ci
  21.  
  22. # Source control blocks will have to be VCS-specific...
  23. source-control: &source-control-easy-baker
  24. system: p4
  25.  
  26. # Poll VCS for changes every N timeunits
  27. scheduler: vcs 5 minutes
  28.  
  29.  
  30. bootstrap:
  31. # list of tasks that run before the build
  32.  
  33. tasks:
  34. # list of tasks that constitute the "real build"
  35.  
  36. cleanup:
  37. # list of tasks that run after the build
  38.  
  39.  
  40. build:
  41. name: easy-baker-nightly
  42.  
  43. # Use the same vcs as the ci build
  44. source-control:
  45. <<: *source-control-easy-baker
  46.  
  47. # Daily at a certain time
  48. scheduler: daily at 1am
  49.  
  50. build:
  51. name: easy-baker-deploy
  52.  
  53. # Use the same vcs as the ci build
  54. source-control:
  55. <<: *source-control-easy-baker
  56.  
  57. # Only runs when you hit "build" in the dashboard (or send a REST request)
  58. scheduler: manual
  59.  
  60. ...
Add Comment
Please, Sign In to add comment