forked from serverpod/serverpod
-
Notifications
You must be signed in to change notification settings - Fork 0
318 lines (295 loc) · 8.91 KB
/
dart-tests.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
name: Serverpod CI
on:
push:
branches:
- main
- dev
- tests
- stable-*
pull_request:
branches:
- main
- dev
- stable-*
jobs:
dart_format:
name: dart format
runs-on: ubuntu-latest
strategy:
matrix:
dart-version: ['3.3.0']
steps:
- uses: actions/checkout@v3
- uses: dart-lang/[email protected]
with:
sdk: ${{ matrix.dart-version }}
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
dart_analyze:
name: dart analyze
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: bash util/pub_get_all
- name: Analyze
run: bash util/run_tests_analyze
dart_analyze_downgrade:
name: dart analyze downgrade
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: bash util/pub_get_all --downgrade
- name: Analyze
run: bash util/run_tests_analyze --allow-warnings
dart_analyze_latest:
name: dart analyze latest
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: bash util/pub_get_all
- name: Analyze
run: bash util/run_tests_analyze --allow-infos
dart_analyze_latest_downgrade:
name: dart analyze latest downgrade
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: bash util/pub_get_all --downgrade
- name: Analyze
run: bash util/run_tests_analyze --allow-warnings
serverpod_generate:
name: serverpod generate
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: bash util/pub_get_all
- name: Run serverpod generate
run: bash util/run_tests_serverpod_generate
update_pubspecs:
name: update pubspecs
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run serverpod update pubspecs
run: bash util/run_tests_update_pubspecs
unit_io_tests:
name: Unit tests IO
runs-on: ${{ matrix.os }}
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
os: [windows-latest, ubuntu-latest]
path:
[
'tools/serverpod_cli',
'packages/serverpod',
'packages/serverpod_client',
'packages/serverpod_shared',
'packages/serverpod_serialization',
'tests/serverpod_test_client',
'tests/serverpod_test_server',
'modules/serverpod_auth/serverpod_auth_server',
]
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run unit tests
run: dart test
working-directory: ${{ matrix.path }}
unit_web_tests:
name: Unit tests Web
runs-on: ${{ matrix.os }}
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
os: [ubuntu-latest]
path: ['packages/serverpod_client']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- uses: browser-actions/setup-chrome@v1
- name: Run unit tests
run: dart test -p chrome
working-directory: ${{ matrix.path }}
e2e_io_tests:
name: Serverpod E2E IO tests
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run e2e tests
run: util/run_tests_e2e
e2e_web_tests:
name: Serverpod E2E web tests
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run e2e tests
run: util/run_tests_e2e firefox
integration_tests:
name: Serverpod integration tests
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
path: ['packages/serverpod_shared']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run integration tests
run: dart test test_integration
working-directory: ${{ matrix.path }}
integration_test_server:
name: Serverpod integration tests (server)
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run integration tests
run: util/run_tests_integration
integration_test_server_concurrent:
name: Serverpod concurrent integration tests (server)
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run integration tests
run: util/run_tests_integration_concurrently
bootstrap_tests:
name: Bootstrap tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
flutter-version: ['3.19.0', '3.24.0']
os: [ubuntu-latest]
path: ['tests/bootstrap_project']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker docker-compose
# Link the Docker Compose v2 plugin so it's understood by the docker CLI
mkdir -p ~/.docker/cli-plugins
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
colima start
- name: Run unit tests
run: dart test --concurrency=1
working-directory: ${{ matrix.path }}
migration_e2e_tests:
name: Migration e2e tests
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.19.0', '3.24.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run e2e migration tests
run: util/run_tests_migrations_e2e
cli_e2e_tests:
name: CLI e2e tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
flutter-version: ['3.19.0', '3.24.0']
os: [ubuntu-latest]
path: ['tests/serverpod_cli_e2e_test']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker docker-compose
# Link the Docker Compose v2 plugin so it's understood by the docker CLI
mkdir -p ~/.docker/cli-plugins
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
colima start
- name: Run unit tests
run: dart test --concurrency=1
working-directory: ${{ matrix.path }}
integration_test_flutter:
name: Serverpod integration tests (flutter)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run integration tests in Docker
run: util/run_tests_flutter_integration