12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- kind: pipeline
- type: docker
- name: filesystem-drone
- jars:
- - 'airport_common'
- - 'airport_admin'
- - 'airport_api'
- - 'airport_file'
- - 'airport_pda'
- - 'airport_sale'
- - 'airport_stock'
- - 'airport_workflow'
- - 'airport_gateway'
- trigger:
- branch:
- - test
- steps:
- - name: package
- image: maven:3-jdk-8
- volumes:
- - name: maven-cache
- path: /root/.m2/
- - name: maven-build
- path: /app/build
- commands:
- - chmod +x test.sh
- - ./test.sh
- - chmod +x show.sh
- - ./show.sh
- volumes:
-
- - name: maven-cache
- host:
- path: /mydata/maven/cache
- - name: maven-build
-
- host:
- path: /mydata/maven/build
|