Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. default:
  2. image: ubuntu
  3.  
  4. stages:
  5. - build
  6. - test
  7. - deploy
  8.  
  9. build:
  10. stage: build
  11. script:
  12. - echo "Hello Build"
  13.  
  14. test:
  15. stage: test
  16. script:
  17. - echo "Hello Test"
  18.  
  19. deploy:
  20. stage: deploy
  21. script:
  22. - echo "Hello Deploy"
  23. - apt update
  24. - apt -y install curl jq
  25. - ./trigger-blueprint.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement