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

123456789101112131415161718192021222324252627
  1. kind: pipeline
  2. type: docker
  3. name: 1
  4. platform:
  5. os: linux
  6. arch: arm64
  7. steps:
  8. - name: maven
  9. image: maven:3-jdk-10
  10. volumes:
  11. - name: cache
  12. path: /root/.m2
  13. commands:
  14. - mvn compile
  15. - name: check ansible syntax
  16. image: plugins/ansible:3
  17. settings:
  18. playbook: ansible/playbook.yml
  19. galaxy: ansible/requirements.yml
  20. inventory: ansible/inventory
  21. syntax_check: true
  22. trigger:
  23. branch:
  24. - ansible
  25. event:
  26. - cron