You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.drone.yml 482 B

2 years ago
12345678910111213141516171819202122232425262728293031323334
  1. kind: pipeline
  2. type: docker
  3. name: 1
  4. platform:
  5. os: linuxs
  6. arch: amd64
  7. steps:
  8. - name: maven
  9. image: maven:3-jdk-10
  10. volumes:
  11. - name: cache
  12. path: /root/.m2
  13. commands:
  14. - mvn install -DskipTests=true
  15. - name: run
  16. image: maven:3-jdk-8
  17. volumes:
  18. - name: cache
  19. path: /root/.m2
  20. commands:
  21. - nohup mvn tomcat7:run &
  22. volumes:
  23. - name: cache
  24. host:
  25. path: /var/lib/cache
  26. trigger:
  27. branch:
  28. - master
  29. event:
  30. - push
  31. - pull_request