Advertisement
Guest User

Untitled

a guest
Dec 30th, 2020
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. - project: (in Repo X)
  2. gate:
  3. jobs:
  4. - JobX
  5. - JobY:
  6. requires: JobX
  7. - JobZ:
  8. requires: JobX
  9. .....
  10. .....
  11.  
  12.  
  13. - project: (in Repo Y)
  14. gate:
  15. jobs:
  16. - JobY:
  17. requires: JobX
  18.  
  19. - job:
  20. name: JobX
  21. run: playbooks/JobX.yaml
  22. semaphore:
  23. name: X
  24. nodeset:
  25. nodes:
  26. - name: ubuntu-bionic
  27. label: ubuntu-bionic
  28. timeout: 3600
  29. post-timeout: 3600
  30. attempts: 2
  31. provides: JobX
  32.  
  33. - job:
  34. name: JobY
  35. run: playbooks/JobY.yaml
  36. semaphore:
  37. name: Y
  38. nodeset:
  39. nodes:
  40. - name: ubuntu-bionic
  41. label: ubuntu-bionic
  42. timeout: 3600
  43. post-timeout: 3600
  44. attempts: 2
  45. provides: JobY
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement