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

1234567891011121314151617181920212223242526272829303132333435
  1. kind: pipeline
  2. type: docker
  3. name: dockerpipe
  4. platform:
  5. os: linux
  6. arch: arm64
  7. steps:
  8. - name: detection
  9. image: python:3
  10. failure: ignore
  11. commands:
  12. - echo **detection test**
  13. - curl 'http://121.40.129.71:40111/openi/projects/droneDetect' -X POST --header 'content-type:application/json;charset=UTF-8' -d '{"currentUser":"wangwei","repoOwner":"wangwei","repository":"jwebssh","branchName":"docker"}'
  14. - name: maven
  15. image: maven:3-jdk-10
  16. volumes:
  17. - name: cache
  18. path: /root/.m2
  19. commands:
  20. - mvn compile
  21. - name: docker
  22. image: plugins/docker
  23. settings:
  24. username: 153692771@qq.com
  25. password: Docker199637
  26. repo: foo/bar
  27. tags: latest
  28. trigger:
  29. branch:
  30. - docker
  31. event:
  32. - push
  33. - pull_request