-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
441 lines (373 loc) · 14.1 KB
/
main.yaml
File metadata and controls
441 lines (373 loc) · 14.1 KB
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
name: build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches: [master]
permissions:
contents: read
pages: write
id-token: write
jobs:
semantic_pull_request:
name: ✅ Semantic Pull Request
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
changes:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
outputs:
needs_angular_dart_example_checks: ${{ steps.needs_angular_dart_example_checks.outputs.changes }}
needs_bloc_tools_e2e_checks: ${{ steps.needs_bloc_tools_e2e_checks.outputs.changes }}
needs_dart_package_checks: ${{ steps.needs_dart_package_checks.outputs.changes }}
needs_bloc_tools_compile_checks: ${{ steps.needs_bloc_tools_compile_checks.outputs.changes }}
needs_flutter_package_checks: ${{ steps.needs_flutter_package_checks.outputs.changes }}
needs_flutter_example_checks: ${{ steps.needs_flutter_example_checks.outputs.changes }}
needs_docs_checks: ${{ steps.needs_docs_checks.outputs.changes }}
name: 👀 Detect Changes
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- uses: dorny/paths-filter@v3
name: Angular Dart Package Detection
id: needs_angular_dart_example_checks
with:
filters: |
angular_counter:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/angular_dart_package/action.yaml
- examples/angular_counter/**
github_search/angular_github_search:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- examples/github_search/angular_github_search/**
- uses: dorny/paths-filter@v3
name: Bloc Tools E2E Detection
id: needs_bloc_tools_e2e_checks
with:
filters: |
bloc_tools:
- ./.github/workflows/main.yaml
- packages/bloc_tools/**
- uses: dorny/paths-filter@v3
name: Dart Package Detection
id: needs_dart_package_checks
with:
filters: |
angular_bloc:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- packages/angular_bloc/**
bloc_concurrency:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- packages/bloc_concurrency/**
bloc_lint:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- packages/bloc_lint/**
bloc_test:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- packages/bloc_test/**
bloc_tools:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- packages/bloc_tools/**
bloc:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/dart_package/action.yaml
- packages/bloc/**
- uses: dorny/paths-filter@v3
name: Bloc Tools Compile Detection
id: needs_bloc_tools_compile_checks
with:
filters: |
bloc_tools:
- ./.github/actions/dart_compile/action.yaml
- ./.github/workflows/main.yaml
- packages/bloc_tools/**
- uses: dorny/paths-filter@v3
name: Flutter Package Detection
id: needs_flutter_package_checks
with:
filters: |
flutter_bloc:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- packages/flutter_bloc/**
replay_bloc:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- packages/replay_bloc/**
hydrated_bloc:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- packages/hydrated_bloc/**
- uses: dorny/paths-filter@v3
name: Example Detection
id: needs_flutter_example_checks
with:
filters: |
bloc_concurrency_visualizer:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/bloc_concurrency_visualizer/**
flutter_bloc_with_stream:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_bloc_with_stream/**
flutter_complex_list:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_complex_list/**
flutter_counter:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_counter/**
flutter_dynamic_form:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_dynamic_form/**
flutter_firebase_login:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_firebase_login/**
flutter_form_validation:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_form_validation/**
flutter_infinite_list:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_infinite_list/**
flutter_login:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_login/**
flutter_shopping_cart:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_shopping_cart/**
flutter_timer:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_timer/**
flutter_todos:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_todos/**
flutter_weather:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_weather/**
flutter_wizard:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/flutter_wizard/**
github_search/flutter_github_search:
- ./.github/codecov.yml
- ./.github/workflows/main.yaml
- ./.github/actions/flutter_package/action.yaml
- examples/github_search/flutter_github_search/**
- uses: dorny/paths-filter@v3
name: Docs Detection
id: needs_docs_checks
with:
filters: |
- ./.github/workflows/main.yaml
- ./.github/actions/astro_site/action.yaml
- examples/**
- docs/**
bloc_tools_e2e_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_bloc_tools_e2e_checks != '[]' }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
package: ${{ fromJSON(needs.changes.outputs.needs_bloc_tools_e2e_checks) }}
runs-on: ${{ matrix.os }}
name: 🧪 ${{ matrix.package }} (${{ matrix.os }})
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 🐦 Setup Flutter
uses: subosito/flutter-action@v2
with:
cache: true
- name: ⚙️ Setup Bloc Tools
run: dart pub global activate --source path ./packages/bloc_tools
- name: 📦 Install Dependencies
working-directory: packages/${{ matrix.package }}/e2e
run: flutter pub get
- name: 🧪 E2E
working-directory: packages/${{ matrix.package }}/e2e
run: dart run main.dart
dart_package_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_dart_package_checks != '[]' }}
strategy:
fail-fast: false
matrix:
package: ${{ fromJSON(needs.changes.outputs.needs_dart_package_checks) }}
runs-on: ubuntu-latest
name: 🎯 ${{ matrix.package }}
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 🎯 Build ${{ matrix.package }}
uses: ./.github/actions/dart_package
with:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
working_directory: packages/${{ matrix.package }}
min_coverage: 100
bloc_tools_compile_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_bloc_tools_compile_checks != '[]' }}
strategy:
fail-fast: false
matrix:
config:
[
{ "runs-on": "ubuntu-latest", "os": "linux", "arch": "x64" },
{ "runs-on": "ubuntu-latest", "os": "linux", "arch": "arm64" },
{ "runs-on": "macos-15-intel", "os": "macos", "arch": "x64" },
{ "runs-on": "macos-latest", "os": "macos", "arch": "arm64" },
{ "runs-on": "windows-latest", "os": "windows", "arch": "x64" },
]
runs-on: ${{ matrix.config.runs-on }}
name: ⚙️ Compile Bloc Tools
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: ⚙️ Compile Bloc Tools for ${{ matrix.config.os }} ${{ matrix.config.arch }}
uses: ./.github/actions/dart_compile
with:
entrypoint: bin/bloc.dart
working_directory: packages/bloc_tools
name: bloc_${{ matrix.config.os }}_${{ matrix.config.arch }}
os: ${{ matrix.config.os }}
arch: ${{ matrix.config.arch }}
flutter_package_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_flutter_package_checks != '[]' }}
strategy:
fail-fast: false
matrix:
package: ${{ fromJSON(needs.changes.outputs.needs_flutter_package_checks) }}
runs-on: ubuntu-latest
name: 🐦 ${{ matrix.package }}
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 🎯 Build ${{ matrix.package }}
uses: ./.github/actions/flutter_package
with:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
working_directory: packages/${{ matrix.package }}
min_coverage: 100
angular_dart_example_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_angular_dart_example_checks != '[]' }}
strategy:
fail-fast: false
matrix:
example: ${{ fromJSON(needs.changes.outputs.needs_angular_dart_example_checks) }}
runs-on: ubuntu-latest
name: 🛡️ ${{ matrix.example }}
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 🎯 Build ${{ matrix.example }}
uses: ./.github/actions/angular_dart_package
with:
analyze_directories: lib
working_directory: examples/${{ matrix.example }}
flutter_example_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_flutter_example_checks != '[]' }}
strategy:
fail-fast: false
matrix:
example: ${{ fromJSON(needs.changes.outputs.needs_flutter_example_checks) }}
runs-on: ubuntu-latest
name: 🧑🎓 ${{ matrix.example }}
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 🎯 Build ${{ matrix.example }}
uses: ./.github/actions/flutter_package
with:
analyze_directories: lib
collect_coverage: false
collect_score: false
flutter_channel: master
working_directory: examples/${{ matrix.example }}
docs_checks:
needs: changes
if: ${{ needs.changes.outputs.needs_docs_checks != '[]' }}
runs-on: ubuntu-latest
name: 📖 docs
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 📦 Build Docs
uses: ./.github/actions/astro_site
with:
working_directory: ./docs
deploy:
needs: docs_checks
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: 🚀 Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
build:
needs:
[
angular_dart_example_checks,
bloc_tools_compile_checks,
bloc_tools_e2e_checks,
dart_package_checks,
docs_checks,
flutter_example_checks,
flutter_package_checks,
semantic_pull_request,
]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: ⛔️ exit(1) on failure
if: ${{ contains(join(needs.*.result, ','), 'failure') }}
run: exit 1