123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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
- - cat jars.txt
- volumes:
-
- - name: maven-cache
- host:
- path: /mydata/maven/cache
- - name: maven-build
-
- host:
- path: /mydata/maven/build
|