Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. workspace:
  2. base: /go
  3. path: src/github.com/ghjnut/test
  4.  
  5. pipeline:
  6. deps:
  7. image: golang:1.8
  8. commands:
  9. - go get github.com/kardianos/govendor
  10. - govendor sync
  11. build:
  12. image: golang:1.8
  13. commands:
  14. - go build -v
  15.  
  16. publish:
  17. image: plugins/docker
  18. dockerfile: Dockerfile
  19. tags: ["prod"]
  20. when:
  21. branch: master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement