forked from firebase/flutterfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
melos.yaml
187 lines (165 loc) · 5.66 KB
/
melos.yaml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
name: FlutterFire
packages:
- packages/**
ignore:
# TODO Excluded pending CI fixes
- firebase_admob
- firebase_admob_example
scripts:
lint:all:
run: melos run analyze && melos run format
description: Run all static analysis checks
analyze:
run: |
melos exec -c 5 -- \
dart analyze . --fatal-infos
description: |
Run `dart analyze` in all packages.
- Note: you can also rely on your IDEs Dart Analysis / Issues window.
format:
run: dart pub global run flutter_plugin_tools format
description: |
Build a specific example app for Android.
- Requires `flutter_plugin_tools` (`pub global activate flutter_plugin_tools`).
- Requires `clang-format` (can be installed via Brew on macOS).
build:all:
run: |
melos run build:example_ios_pub --no-select && melos run build:example_android_pub --no-select && melos bootstrap
description: Build all example apps (currently ios and android, macos requires flutter channel master)
build:example_android:
run: |
melos exec -c 6 --fail-fast -- \
"flutter build apk --no-pub"
description: Build a specific example app for Android.
select-package:
dir-exists:
- android
scope: "*example*"
ignore: "*firebase_ml_custom*"
# melos bootstrap does not generate all files generated by a build that runs
# `pub get`, and `flutter drive` does not either, so it is still necessary to
# build sometimes without the `--no-pub` switch. Careful: `melos bootstrap` after.
build:example_android_pub:
run: |
melos exec -c 6 --fail-fast -- \
"flutter build apk"
description: Build a specific example app for Android.
select-package:
dir-exists:
- android
scope: "*example*"
ignore: "*firebase_ml_custom*"
build:example_ios:
run: |
melos exec -c 6 --fail-fast -- \
"flutter build ios --no-codesign --no-pub"
description: Build a specific example app for iOS.
select-package:
dir-exists:
- ios
scope: "*example*"
ignore: "*firebase_ml_custom*"
# melos bootstrap does not generate all files generated by a build that runs
# `pub get`, and `flutter drive` does not either, so it is still necessary to
# build sometimes without the `--no-pub` switch. Careful: `melos bootstrap` after.
build:example_ios_pub:
run: |
melos exec -c 6 --fail-fast -- \
"flutter build ios --no-codesign"
description: Build a specific example app for iOS.
select-package:
dir-exists:
- ios
scope: "*example*"
ignore: "*firebase_ml_custom*"
build:example_macos:
run: |
melos exec -c 6 --fail-fast -- \
"flutter build macos --no-pub"
description: |
Build a specific example app for macOS.
- Requires `flutter channel master`.
- Requires `flutter config --enable-macos-desktop` set.
select-package:
dir-exists:
- macos
scope: "*example*"
test:all:
run: melos run test --no-select && melos run test:mobile_e2e --no-select
description: Run all tests available on stable channel
test:
run: |
melos exec -c 6 --fail-fast -- \
"flutter test --no-pub"
description: Run `flutter test` for a specific package.
select-package:
dir-exists:
- test
ignore:
- "*web*"
- "*example*"
test:web:
run: |
melos exec -c 1 --fail-fast -- \
"flutter test --no-pub --platform=chrome"
description: Run `flutter test --platform=chrome` for a specific '*web' package.
select-package:
dir-exists:
- test
scope: "*web*"
test:mobile_e2e:
run: |
melos exec -c 1 --fail-fast -- \
"flutter drive --target=./test_driver/MELOS_PARENT_PACKAGE_NAME_e2e.dart"
description: |
Run all Android or iOS test driver e2e tests in a specific example app.
- Requires an Android emulator or iOS simulator.
select-package:
dir-exists:
- test_driver
scope: "*example*"
ignore:
- "*firebase_ml_custom*"
- "*firebase_ml_vision*"
- "*firebase_admob*"
test:web_e2e:
run: |
melos exec -c 1 --fail-fast -- \
"flutter drive --device-id=web-server --no-pub --target=./test_driver/MELOS_PARENT_PACKAGE_NAME_e2e.dart"
description: |
Run all Web test driver e2e tests in a specific example app.
- Requires `flutter channel master` (or beta).
- Requires `flutter config --enable-web` set.
- Requires chromedriver running on port 4444.
select-package:
dir-exists:
- web
- test_driver
scope: "*example*"
test:macos_e2e:
run: |
melos exec -c 1 --fail-fast -- \
"flutter drive -d macos --no-pub --target=./test_driver/MELOS_PARENT_PACKAGE_NAME_e2e.dart"
description: |
Run all MacOS test driver e2e tests in a specific example app.
- Requires `flutter channel master`.
- Requires `flutter config --enable-macos-desktop` set.
select-package:
dir-exists:
- macos
- test_driver
scope: "*example*"
# Clean things very deeply, can be used to establish "pristine checkout" status
clean:deep: >
git clean -x -d -f -q
# Additional cleanup lifecycle script, executed when `melos clean` is ran.
postclean: >
melos exec -c 6 -- "flutter clean"
# Run all targets generally expected in CI for a full local quality check
qualitycheck: >
melos run clean:deep && melos clean && melos bootstrap && melos run lint:all && melos run build:all && melos run test:all
dev_dependencies:
pedantic: 1.8.0
environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.12.13+hotfix.5 <2.0.0"