Guest User

gitlab-ci-yml

a guest
Apr 18th, 2019
485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. image: maven:latest
  2.  
  3. stages:
  4. - build
  5. - test
  6.  
  7. job compile:
  8. stage: build
  9. script: mvn compile
  10.  
  11. job test:
  12. stage: test
  13. script: mvn test
  14. artifacts:
  15. paths:
  16. - app/target/site/jacoco/
Advertisement
Add Comment
Please, Sign In to add comment