-
Notifications
You must be signed in to change notification settings - Fork 6
/
step.yml
89 lines (78 loc) · 2.48 KB
/
step.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# A couple of useful guides & docs:
#
# - Main Bitrise CLI docs: https://github.com/bitrise-io/bitrise/tree/master/_docs
# - Step Development Guideline: https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md
# - Bitrise.yml format spec: https://github.com/bitrise-io/bitrise/blob/master/_docs/bitrise-yml-format-spec.md
# - Bitrise docs: http://devcenter.bitrise.io/
# - Bitrise CLI guides: http://devcenter.bitrise.io/bitrise-cli/
title: |-
Flutter
summary: |
Executes one or more Flutter commands. E.g. build, test or install.
description: |
Sample `bitrise.yml` snippet for building iOS and Android apps:
```yaml
primary:
steps:
- certificate-and-profile-installer:
inputs:
- install_defaults: 'no'
- activate-ssh-key:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone: {}
- flutter:
inputs:
- commands: test|build ios|build apk
```
website: https://github.com/DroidsOnRoids/bitrise-step-flutter
source_code_url: https://github.com/DroidsOnRoids/bitrise-step-flutter
support_url: https://github.com/DroidsOnRoids/bitrise-step-flutter/issues
host_os_tags:
- osx-10.10
- ubuntu-16.04
# Type tags are used for categorizing steps, for easier step discovery in Step Libraries.
# You can find more information about type tags in the Step Development Guideline:
# https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md
type_tags:
- build
- test
project_type_tags:
- flutter
is_requires_admin_user: false
is_always_run: false
is_skippable: false
run_if: ""
deps:
brew:
- name: git
- name: curl
- name: unzip
apt_get:
- name: git
- name: curl
- name: unzip
- name: libglu1-mesa
toolkit:
go:
package_name: github.com/DroidsOnRoids/bitrise-step-flutter
inputs:
- version: 1.17.4
opts:
title: "Flutter version"
summary: Flutter release version or repository tag, without `v` prefix. E.g. `0.9.4-beta` or `0.10.0` or `master`.
is_expand: true
is_required: true
- working_dir: $BITRISE_SOURCE_DIR
opts:
title: "Root directory of Flutter project"
summary: The root directory of your Flutter project, where your `pubspec.yaml` file is located.
is_expand: true
is_required: true
- commands: build
opts:
title: "Flutter commands to be executed"
summary: |
`|` separated Flutter commands to be executed in order. E.g. `build`, `test` or `install`.
is_expand: true
is_required: true