-
Notifications
You must be signed in to change notification settings - Fork 1
304 lines (224 loc) · 8.04 KB
/
rapid_cli.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
name: rapid_cli
on:
push:
paths:
- packages/rapid_cli/**
env:
FLUTTER_VERSION: 3.13.0
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/rapid_cli
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint commit messages
uses: wagoid/commitlint-github-action@v5
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Format
run: dart format lib test tool --set-exit-if-changed
- name: Analyze
run: melos analyze
- name: Run Unit Tests
run: flutter test test/src -j 1 --no-pub --test-randomize-ordering-seed random --coverage
- name: Ensure 100% Code Coverage
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
min_coverage: 100
path: packages/rapid_cli/coverage/lcov.info
build_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- name: Create Android App
run: rapid create test_app --android -o tmp_android
- name: Build APK
run: cd tmp_android/packages/test_app/test_app_android/test_app_android && flutter build apk -t lib/main_development.dart
- name: Build App Bundle
run: cd tmp_android/packages/test_app/test_app_android/test_app_android && flutter build appbundle -t lib/main_development.dart
build_ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
architecture: x64
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- name: Create iOS App
run: rapid create test_app --ios -o tmp_ios
- name: Build
run: cd tmp_ios/packages/test_app/test_app_ios/test_app_ios && flutter build ios --release --no-codesign -t lib/main_development.dart
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- name: Create Linux App
run: rapid create test_app --linux -o tmp_linux
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
- name: Build
run: cd tmp_linux/packages/test_app/test_app_linux/test_app_linux && flutter build linux -t lib/main_development.dart
build_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
architecture: x64
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- name: Create macOS App
run: rapid create test_app --macos -o tmp_macos
- name: Build
run: cd tmp_macos/packages/test_app/test_app_macos/test_app_macos && flutter build macos -t lib/main_development.dart
build_mobile:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
architecture: x64
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 17
- name: Create Mobile App
run: rapid create test_app --mobile -o tmp_mobile
- name: Build APK
run: cd tmp_mobile/packages/test_app/test_app_mobile/test_app_mobile && flutter build apk -t lib/main_development.dart
- name: Build App Bundle
run: cd tmp_mobile/packages/test_app/test_app_mobile/test_app_mobile && flutter build appbundle -t lib/main_development.dart
- name: Build iOS
run: cd tmp_mobile/packages/test_app/test_app_mobile/test_app_mobile && flutter build ios --release --no-codesign -t lib/main_development.dart
build_web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- name: Create Web App
run: rapid create test_app --web -o tmp_web
- name: Build
run: cd tmp_web/packages/test_app/test_app_web/test_app_web && flutter build web -t lib/main_development.dart
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Melos
run: flutter pub global activate melos
- name: Install Rapid CLI locally
run: melos dev:activate
- name: Create Windows App
run: rapid create test_app --windows -o tmp_windows
- name: Build
run: cd tmp_windows/packages/test_app/test_app_windows/test_app_windows && flutter build windows -t lib/main_development.dart
pana:
defaults:
run:
working-directory: packages/rapid_cli
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: stable
cache: true
cache-key: "flutter-:os:-:channel:-:version:-:arch:"
- name: Install Dependencies
run: flutter pub get
- name: Setup Pana
run: flutter pub global activate pana
- name: Verify Pub Score
run: bash ../../tool/verify_pub_score.sh 120 # TODO