weibo_kit/.drone.yml
2019-03-28 14:52:06 +08:00

58 lines
1.1 KiB
Dart

kind: pipeline
name: default
steps:
- name: prepare
image: v7lin/flutter:1.2.1-stable
volumes:
- name: pub-cache
path: /opt/flutter/.pub-cache
commands:
- flutter packages get
#- name: build_runner
# image: v7lin/flutter:1.2.1-stable
# volumes:
# - name: pub-cache
# path: /opt/flutter/.pub-cache
# commands:
# - flutter packages pub run build_runner build
- name: format
image: v7lin/flutter:1.2.1-stable
volumes:
- name: pub-cache
path: /opt/flutter/.pub-cache
commands:
- flutter format --dry-run --set-exit-if-changed .
- name: analyze
image: v7lin/flutter:1.2.1-stable
volumes:
- name: pub-cache
path: /opt/flutter/.pub-cache
commands:
- flutter analyze
- name: test
image: v7lin/flutter:1.2.1-stable
volumes:
- name: pub-cache
path: /opt/flutter/.pub-cache
commands:
- flutter test
- pushd example/
- flutter test
- name: publish-check
image: v7lin/flutter:1.2.1-stable
volumes:
- name: pub-cache
path: /opt/flutter/.pub-cache
commands:
- flutter packages pub publish --dry-run
volumes:
- name: pub-cache
temp: {}