Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. [build] -> [tests] -> [release*]
  2. * only on tags
  3.  
  4. #!/bin/sh -eo pipefail
  5. # Unable to parse YAML
  6. # mapping values are not allowed here
  7. # in 'string', line 25, column 19:
  8. # requires:
  9. # ^
  10. #
  11. # -------
  12. # Warning: This configuration was auto-generated to show you the message above.
  13. # Don't rerun this job. Rerunning will have no effect.
  14. false
  15.  
  16. Exited with code 1
  17.  
  18. version: 2
  19. jobs:
  20. build:
  21. steps:
  22. - run:
  23. name: Compile Binaries
  24. command: echo "Compile Binaries"
  25. tests:
  26. steps:
  27. - run:
  28. name: Run All Tests
  29. command: echo "Run All Tests"
  30. build:
  31. steps:
  32. - run:
  33. name: Release Artifacts
  34. command: echo "Release Artifacts"
  35.  
  36. workflows:
  37. version: 2
  38. minimal:
  39. jobs:
  40. - build
  41. - tests
  42. requires:
  43. - build
  44. - release
  45. requires:
  46. - tests
  47. filters:
  48. tags:
  49. only: /^v.*$/
  50.  
  51. jobs:
  52. build:
  53. steps:
  54. - run:
  55. name: Release Artifacts
  56. command: echo "Release Artifacts"
  57.  
  58. workflows:
  59. minimal:
  60. jobs:
  61. - release
  62. filters:
  63. tags:
  64. only: /^v.*$/
  65.  
  66. #!/bin/sh -eo pipefail
  67. # Unable to parse YAML
  68. # mapping values are not allowed here
  69. # in 'string', line 12, column 18:
  70. # filters:
  71. # ^
  72. #
  73. # -------
  74. # Warning: This configuration was auto-generated to show you the message above.
  75. # Don't rerun this job. Rerunning will have no effect.
  76. false
  77.  
  78. Exited with code 1
  79.  
  80. workflows:
  81. version: 2
  82. minimal:
  83. jobs:
  84. - build
  85. - tests:
  86. requires:
  87. - build
  88. - release:
  89. requires:
  90. - tests
  91. filters:
  92. tags:
  93. only: /^v.*$/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement