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 303 B

12345678910111213141516171819202122232425
  1. kind: pipeline
  2. type: docker
  3. name: 1
  4. platform:
  5. os: linux
  6. arch: amd64
  7. steps:
  8. - name: maven
  9. image: maven:3-jdk-10
  10. commands:
  11. - mvn install -DskipTests=true
  12. - name: run
  13. image: maven:3-jdk-8
  14. commands:
  15. - mvn tomcat7:run
  16. trigger:
  17. branch:
  18. - master
  19. event:
  20. - push
  21. - pull_request