.drone.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. ---
  2. kind: pipeline
  3. type: docker
  4. name: default
  5. steps:
  6. - name: 1.submodules
  7. image: alpine/git
  8. commands:
  9. - git submodule update --init --recursive
  10. - name: 2.building
  11. image: golang:1.17
  12. environment:
  13. GOOS: linux
  14. GOARCH: amd64
  15. GO111MODULE: on
  16. CGO_ENABLED: 0
  17. GOPROXY: https://proxy.golang.com.cn,direct
  18. commands:
  19. - cd sku3d
  20. - go version
  21. - go env
  22. - go build
  23. - name: 3.dockerbuild(test)
  24. image: plugins/docker
  25. settings:
  26. username: infish2018
  27. password: infish@2022
  28. repo: registry.cn-chengdu.aliyuncs.com/sku3d/maintest
  29. registry: registry.cn-chengdu.aliyuncs.com
  30. mirror: https://17itejgx.mirror.aliyuncs.com
  31. tags:
  32. - latest
  33. - '1.0.13'
  34. context: sku3d/
  35. dockerfile: sku3d/Dockerfile
  36. when:
  37. branch:
  38. - test
  39. - name: 4.ssh-deploy(test)
  40. image: appleboy/drone-ssh
  41. settings:
  42. host:
  43. - 124.71.139.24
  44. username: root
  45. password:
  46. from_secret: serverpassword
  47. port: 22
  48. command_timeout: 3m
  49. script:
  50. - cd /root/services/compose-sku3d-test
  51. - docker pull registry.cn-chengdu.aliyuncs.com/sku3d/maintest:latest
  52. - docker-compose up -d
  53. - docker-compose ps
  54. when:
  55. branch:
  56. - test
  57. - name: 3.dockerbuild(release)
  58. image: plugins/docker
  59. settings:
  60. username: infish2018
  61. password: infish@2022
  62. repo: registry.cn-chengdu.aliyuncs.com/sku3d/main
  63. registry: registry.cn-chengdu.aliyuncs.com
  64. mirror: https://17itejgx.mirror.aliyuncs.com
  65. tags:
  66. - latest
  67. - '1.0.13'
  68. context: sku3d/
  69. dockerfile: sku3d/Dockerfile
  70. when:
  71. branch:
  72. - release
  73. - name: 4.ssh-deploy(release)
  74. image: appleboy/drone-ssh
  75. settings:
  76. host:
  77. - 124.71.139.24
  78. username: root
  79. password:
  80. from_secret: serverpassword
  81. port: 22
  82. command_timeout: 3m
  83. script:
  84. - cd /root/services/platform-release
  85. - docker pull registry.cn-chengdu.aliyuncs.com/sku3d/main:latest
  86. - docker-compose up -d
  87. - docker-compose ps
  88. when:
  89. branch:
  90. - release
  91. - name: 3.dockerbuild(dadongtest)
  92. image: plugins/docker
  93. settings:
  94. username: infish2018
  95. password: infish@2022
  96. repo: registry.cn-chengdu.aliyuncs.com/waibao/dadongmaintest
  97. registry: registry.cn-chengdu.aliyuncs.com
  98. mirror: https://17itejgx.mirror.aliyuncs.com
  99. tags:
  100. - latest
  101. - '0.0.1'
  102. context: sku3d/
  103. dockerfile: sku3d/Dockerfile
  104. when:
  105. branch:
  106. - dadongtest
  107. - name: 4.ssh-deploy(dadongtest)
  108. image: appleboy/drone-ssh
  109. settings:
  110. host:
  111. - 124.71.170.116
  112. username: root
  113. password:
  114. from_secret: dadongpassword
  115. port: 22
  116. command_timeout: 3m
  117. script:
  118. - cd /root/sku3d-test
  119. - docker pull registry.cn-chengdu.aliyuncs.com/waibao/dadongmaintest:latest
  120. - docker-compose up -d
  121. - docker-compose ps
  122. when:
  123. branch:
  124. - dadongtest
  125. - name: 3.dockerbuild(dadongrelease)
  126. image: plugins/docker
  127. settings:
  128. username: infish2018
  129. password: infish@2022
  130. repo: registry.cn-chengdu.aliyuncs.com/waibao/dadongmain
  131. registry: registry.cn-chengdu.aliyuncs.com
  132. mirror: https://17itejgx.mirror.aliyuncs.com
  133. tags:
  134. - latest
  135. - '0.0.1'
  136. context: sku3d/
  137. dockerfile: sku3d/Dockerfile
  138. when:
  139. branch:
  140. - dadongrelease
  141. - name: 4.ssh-deploy(dadongrelease)
  142. image: appleboy/drone-ssh
  143. settings:
  144. host:
  145. - 124.71.170.116
  146. username: root
  147. password:
  148. from_secret: dadongpassword
  149. port: 22
  150. command_timeout: 3m
  151. script:
  152. - cd /root/sku3d
  153. - docker pull registry.cn-chengdu.aliyuncs.com/waibao/dadongmain:latest
  154. - docker-compose up -d
  155. - docker-compose ps
  156. when:
  157. branch:
  158. - dadongrelease
  159. trigger:
  160. branch:
  161. - test
  162. - release
  163. - dadongrelease
  164. - dadongtest
  165. event:
  166. - push