forked from serverpod/serverpod
-
Notifications
You must be signed in to change notification settings - Fork 0
195 lines (180 loc) · 5.29 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
name: Serverpod CI
on:
push:
branches:
- main
- dev
- tests
- stable-1.0
- stable-1.1
pull_request:
branches:
- main
- dev
jobs:
dart_format:
name: dart format
runs-on: ubuntu-latest
strategy:
matrix:
dart-version: ['3.0.0']
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1.3
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.10.0', '3.13.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Install dependencies
run: util/pub_get_all
- name: Analyze
run: util/run_tests_analyze
serverpod_generate:
name: serverpod generate
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.10.0', '3.13.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run serverpod generate
run: util/run_tests_serverpod_generate
update_pubspecs:
name: update pubspecs
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.10.0', '3.13.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run serverpod update pubspecs
run: util/run_tests_update_pubspecs
unit_tests:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
flutter-version: ['3.10.0', '3.13.0']
os: [windows-latest, ubuntu-latest]
path:
[
"tools/serverpod_cli",
"packages/serverpod",
"packages/serverpod_serialization",
"tests/serverpod_test_client",
"tests/serverpod_test_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 }}
single_server_tests:
name: Serverpod tests
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.10.0', '3.13.0']
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: Run single server tests
run: util/run_tests_single_server
integration_tests:
name: Serverpod integration tests
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.10.0', '3.13.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
bootstrap_tests:
name: Bootstrap tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
flutter-version: ['3.10.0', '3.13.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.10.0', '3.13.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.10.0', '3.13.0']
os: [ubuntu-latest]
path: ["tools/serverpod_cli/test_e2e"]
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 }}