Advertisement
Guest User

bitbucket

a guest
Oct 17th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. image: docker image
  2.  
  3. pipelines:
  4. default:
  5. - step:
  6. script:
  7. - echo "This script runs on all branches that don't have any specific"
  8.  
  9. branches:
  10. feature/*:
  11. - step:
  12. caches:
  13. - gradle
  14. script:
  15. - ./gradlew check assembleStagingDebug
  16. develop:
  17. - step:
  18. caches:
  19. - gradle
  20. script:
  21. - ./gradlew clean assembleStagingRelease
  22.  
  23. master:
  24. - step:
  25. caches:
  26. - gradle
  27. script:
  28. - ./gradlew clean assembleProductionDebug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement