-
Notifications
You must be signed in to change notification settings - Fork 254
289 lines (261 loc) · 16.5 KB
/
ci.yml
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
name: moodle-docker CI
on: [push, pull_request]
jobs:
integration:
name: Integration checks
runs-on: ubuntu-22.04
steps:
- name: Checking out moodle-docker
uses: actions/checkout@v4
- name: Checking out moodle
uses: actions/checkout@v4
with:
repository: moodle/moodle
path: moodle
ref: ${{ matrix.branch }}
- name: Prepare moodle-docker environment
run: |
cp config.docker-template.php moodle/config.php
tests/integration-setup.sh
- name: Run moodle-docker tests
run: |
tests/integration-test.sh
- name: Stop moodle-docker
run: |
tests/integration-teardown.sh
PHPUnit:
needs: integration
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
# PostgreSQL (highest, lowest php supported)
- { branch: main, php: "8.3", database: pgsql, suite: phpunit-full } # Full run only for main.
- { branch: main, php: "8.1", database: pgsql, suite: phpunit-full }
- { branch: MOODLE_404_STABLE, php: "8.3", database: pgsql, suite: phpunit } # Other branches, quicker run.
- { branch: MOODLE_404_STABLE, php: "8.1", database: pgsql, suite: phpunit }
- { branch: MOODLE_403_STABLE, php: "8.2", database: pgsql, suite: phpunit } # Other branches, quicker run.
- { branch: MOODLE_403_STABLE, php: "8.0", database: pgsql, suite: phpunit }
- { branch: MOODLE_402_STABLE, php: "8.2", database: pgsql, suite: phpunit }
- { branch: MOODLE_402_STABLE, php: "8.0", database: pgsql, suite: phpunit }
- { branch: MOODLE_401_STABLE, php: "8.1", database: pgsql, suite: phpunit }
- { branch: MOODLE_401_STABLE, php: "7.4", database: pgsql, suite: phpunit }
- { branch: MOODLE_400_STABLE, php: "8.0", database: pgsql, suite: phpunit }
- { branch: MOODLE_400_STABLE, php: "7.3", database: pgsql, suite: phpunit }
- { branch: MOODLE_311_STABLE, php: "8.0", database: pgsql, suite: phpunit }
- { branch: MOODLE_311_STABLE, php: "7.3", database: pgsql, suite: phpunit }
- { branch: MOODLE_310_STABLE, php: "7.4", database: pgsql, suite: phpunit }
- { branch: MOODLE_310_STABLE, php: "7.2", database: pgsql, suite: phpunit }
- { branch: MOODLE_39_STABLE, php: "7.4", database: pgsql, suite: phpunit }
- { branch: MOODLE_39_STABLE, php: "7.2", database: pgsql, suite: phpunit }
# MariaDB (lowest php supported)
- { branch: main, php: "8.1", database: mariadb, suite: phpunit }
- { branch: MOODLE_404_STABLE, php: "8.1", database: mariadb, suite: phpunit }
- { branch: MOODLE_403_STABLE, php: "8.0", database: mariadb, suite: phpunit }
- { branch: MOODLE_402_STABLE, php: "8.0", database: mariadb, suite: phpunit }
- { branch: MOODLE_401_STABLE, php: "7.4", database: mariadb, suite: phpunit }
- { branch: MOODLE_400_STABLE, php: "7.3", database: mariadb, suite: phpunit }
- { branch: MOODLE_311_STABLE, php: "7.3", database: mariadb, suite: phpunit }
- { branch: MOODLE_310_STABLE, php: "7.2", database: mariadb, suite: phpunit }
- { branch: MOODLE_39_STABLE, php: "7.2", database: mariadb, suite: phpunit }
# Other databases (highest php supported)
- { branch: main, php: "8.3", database: mssql, suite: phpunit }
- { branch: MOODLE_404_STABLE, php: "8.3", database: mssql, suite: phpunit }
- { branch: MOODLE_403_STABLE, php: "8.2", database: mssql, suite: phpunit }
- { branch: MOODLE_402_STABLE, php: "8.2", database: mssql, suite: phpunit }
- { branch: MOODLE_401_STABLE, php: "8.1", database: mssql, suite: phpunit }
- { branch: MOODLE_400_STABLE, php: "8.0", database: mssql, suite: phpunit }
- { branch: MOODLE_311_STABLE, php: "8.0", database: mssql, suite: phpunit }
- { branch: MOODLE_310_STABLE, php: "7.4", database: mssql, suite: phpunit }
- { branch: MOODLE_39_STABLE, php: "7.4", database: mssql, suite: phpunit }
- { branch: main, php: "8.3", database: mysql, suite: phpunit }
- { branch: MOODLE_404_STABLE, php: "8.3", database: mysql, suite: phpunit }
- { branch: MOODLE_403_STABLE, php: "8.2", database: mysql, suite: phpunit }
- { branch: MOODLE_402_STABLE, php: "8.2", database: mysql, suite: phpunit }
- { branch: MOODLE_401_STABLE, php: "8.1", database: mysql, suite: phpunit }
- { branch: MOODLE_400_STABLE, php: "8.0", database: mysql, suite: phpunit }
- { branch: MOODLE_311_STABLE, php: "8.0", database: mysql, suite: phpunit }
- { branch: MOODLE_310_STABLE, php: "7.4", database: mysql, suite: phpunit }
- { branch: MOODLE_39_STABLE, php: "7.4", database: mysql, suite: phpunit }
- { branch: main, php: "8.3", database: oracle, suite: phpunit }
- { branch: MOODLE_404_STABLE, php: "8.3", database: oracle, suite: phpunit }
- { branch: MOODLE_403_STABLE, php: "8.2", database: oracle, suite: phpunit }
- { branch: MOODLE_402_STABLE, php: "8.2", database: oracle, suite: phpunit }
- { branch: MOODLE_401_STABLE, php: "8.1", database: oracle, suite: phpunit }
- { branch: MOODLE_400_STABLE, php: "8.0", database: oracle, suite: phpunit }
- { branch: MOODLE_311_STABLE, php: "8.0", database: oracle, suite: phpunit }
- { branch: MOODLE_310_STABLE, php: "7.4", database: oracle, suite: phpunit }
- { branch: MOODLE_39_STABLE, php: "7.4", database: oracle, suite: phpunit }
steps:
- name: Checking out moodle-docker
uses: actions/checkout@v4
- name: Checking out moodle
uses: actions/checkout@v4
with:
repository: moodle/moodle
path: moodle
ref: ${{ matrix.branch }}
- name: Prepare moodle-docker environment
run: |
cp config.docker-template.php moodle/config.php
export MOODLE_DOCKER_DB="${{ matrix.database }}"
export MOODLE_DOCKER_PHP_VERSION="${{ matrix.php }}"
export SUITE="${{ matrix.suite }}"
tests/phpunit-setup.sh
- name: Run moodle-docker tests
run: |
export MOODLE_DOCKER_DB="${{ matrix.database }}"
export SUITE="${{ matrix.suite }}"
tests/phpunit-test.sh
- name: Stop moodle-docker
run: |
export MOODLE_DOCKER_DB="${{ matrix.database }}"
export SUITE="${{ matrix.suite }}"
tests/phpunit-teardown.sh
Behat:
needs: integration
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
# PostgreSQL (highest, lowest php supported)
- { branch: main, php: "8.3", database: pgsql, browser: chrome, suite: behat }
- { branch: main, php: "8.1", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_404_STABLE, php: "8.3", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_404_STABLE, php: "8.1", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_403_STABLE, php: "8.2", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_403_STABLE, php: "8.0", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_402_STABLE, php: "8.2", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_402_STABLE, php: "8.0", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_401_STABLE, php: "8.1", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_401_STABLE, php: "7.4", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_400_STABLE, php: "8.0", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_400_STABLE, php: "7.3", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_311_STABLE, php: "8.0", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_311_STABLE, php: "7.3", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_310_STABLE, php: "7.4", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_310_STABLE, php: "7.2", database: pgsql, browser: firefox, suite: behat }
- { branch: MOODLE_39_STABLE, php: "7.4", database: pgsql, browser: chrome, suite: behat }
- { branch: MOODLE_39_STABLE, php: "7.2", database: pgsql, browser: firefox, suite: behat }
# MariaDB (lowest php supported)
- { branch: main, php: "8.1", database: mariadb, browser: chrome, suite: behat }
- { branch: MOODLE_404_STABLE, php: "8.1", database: mariadb, browser: firefox, suite: behat }
- { branch: MOODLE_403_STABLE, php: "8.0", database: mariadb, browser: firefox, suite: behat }
- { branch: MOODLE_402_STABLE, php: "8.0", database: mariadb, browser: firefox, suite: behat }
- { branch: MOODLE_401_STABLE, php: "7.4", database: mariadb, browser: chrome, suite: behat }
- { branch: MOODLE_400_STABLE, php: "7.3", database: mariadb, browser: firefox, suite: behat }
- { branch: MOODLE_311_STABLE, php: "7.3", database: mariadb, browser: chrome, suite: behat }
- { branch: MOODLE_310_STABLE, php: "7.2", database: mariadb, browser: firefox, suite: behat }
- { branch: MOODLE_39_STABLE, php: "7.2", database: mariadb, browser: chrome, suite: behat }
# Other databases (highest php supported")
- { branch: main, php: "8.3", database: mssql, browser: firefox, suite: behat }
- { branch: MOODLE_404_STABLE, php: "8.3", database: mssql, browser: chrome, suite: behat }
- { branch: MOODLE_403_STABLE, php: "8.2", database: mssql, browser: chrome, suite: behat }
- { branch: MOODLE_402_STABLE, php: "8.2", database: mssql, browser: chrome, suite: behat }
- { branch: MOODLE_401_STABLE, php: "8.1", database: mssql, browser: firefox, suite: behat }
- { branch: MOODLE_400_STABLE, php: "8.0", database: mssql, browser: chrome, suite: behat }
- { branch: MOODLE_311_STABLE, php: "8.0", database: mssql, browser: firefox, suite: behat }
- { branch: MOODLE_310_STABLE, php: "7.4", database: mssql, browser: chrome, suite: behat }
- { branch: MOODLE_39_STABLE, php: "7.4", database: mssql, browser: firefox, suite: behat }
- { branch: main, php: "8.3", database: mysql, browser: chrome, suite: behat }
- { branch: MOODLE_404_STABLE, php: "8.3", database: mysql, browser: firefox, suite: behat }
- { branch: MOODLE_403_STABLE, php: "8.2", database: mysql, browser: firefox, suite: behat }
- { branch: MOODLE_402_STABLE, php: "8.2", database: mysql, browser: firefox, suite: behat }
- { branch: MOODLE_401_STABLE, php: "8.1", database: mysql, browser: chrome, suite: behat }
- { branch: MOODLE_400_STABLE, php: "8.0", database: mysql, browser: firefox, suite: behat }
- { branch: MOODLE_311_STABLE, php: "8.0", database: mysql, browser: chrome, suite: behat }
- { branch: MOODLE_310_STABLE, php: "7.4", database: mysql, browser: firefox, suite: behat }
- { branch: MOODLE_39_STABLE, php: "7.4", database: mysql, browser: chrome, suite: behat }
- { branch: main, php: "8.3", database: oracle, browser: firefox, suite: behat }
- { branch: MOODLE_404_STABLE, php: "8.3", database: oracle, browser: chrome, suite: behat }
- { branch: MOODLE_403_STABLE, php: "8.2", database: oracle, browser: chrome, suite: behat }
- { branch: MOODLE_402_STABLE, php: "8.2", database: oracle, browser: chrome, suite: behat }
- { branch: MOODLE_401_STABLE, php: "8.1", database: oracle, browser: firefox, suite: behat }
- { branch: MOODLE_400_STABLE, php: "8.0", database: oracle, browser: chrome, suite: behat }
- { branch: MOODLE_311_STABLE, php: "8.0", database: oracle, browser: firefox, suite: behat }
- { branch: MOODLE_310_STABLE, php: "7.4", database: oracle, browser: chrome, suite: behat }
- { branch: MOODLE_39_STABLE, php: "7.4", database: oracle, browser: firefox, suite: behat }
steps:
- name: Checking out moodle-docker
uses: actions/checkout@v4
- name: Checking out moodle
uses: actions/checkout@v4
with:
repository: moodle/moodle
path: moodle
ref: ${{ matrix.branch }}
- name: Prepare moodle-docker environment
run: |
cp config.docker-template.php moodle/config.php
export MOODLE_DOCKER_DB="${{ matrix.database }}"
export MOODLE_DOCKER_PHP_VERSION="${{ matrix.php }}"
export SUITE="${{ matrix.suite }}"
export MOODLE_DOCKER_BROWSER="${{ matrix.browser }}"
tests/behat-setup.sh
- name: Run moodle-docker tests
run: |
export MOODLE_DOCKER_DB="${{ matrix.database }}"
export SUITE="${{ matrix.suite }}"
tests/behat-test.sh
- name: Stop moodle-docker
run: |
export MOODLE_DOCKER_DB="${{ matrix.database }}"
export SUITE="${{ matrix.suite }}"
tests/behat-teardown.sh
App:
needs: integration
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
# PostgreSQL (highest, lowest php supported)
# First tests are for app developers.
- { branch: MOODLE_404_STABLE, php: "8.3", suite: app-development, app-version: "latest" }
- { branch: MOODLE_404_STABLE, php: "8.1", suite: app-development, app-version: "latest" }
- { branch: MOODLE_404_STABLE, php: "8.3", suite: app-development, app-version: "main" }
- { branch: MOODLE_404_STABLE, php: "8.1", suite: app-development, app-version: "main" }
# Tests for Moodle plugin developers who want to test against the next version of the app.
- { branch: MOODLE_404_STABLE, php: "8.3", suite: app, app-version: "next-test" }
- { branch: MOODLE_404_STABLE, php: "8.1", suite: app, app-version: "next-test" }
# Tests for Moodle plugin developers testing against all supported versions of Moodle.
- { branch: MOODLE_404_STABLE, php: "8.3", suite: app, app-version: "latest-test" }
- { branch: MOODLE_404_STABLE, php: "8.1", suite: app, app-version: "latest-test" }
- { branch: MOODLE_403_STABLE, php: "8.2", suite: app, app-version: "latest-test" }
- { branch: MOODLE_403_STABLE, php: "8.0", suite: app, app-version: "latest-test" }
- { branch: MOODLE_402_STABLE, php: "8.2", suite: app, app-version: "latest-test" }
- { branch: MOODLE_402_STABLE, php: "8.0", suite: app, app-version: "latest-test" }
- { branch: MOODLE_401_STABLE, php: "8.1", suite: app, app-version: "latest-test" }
- { branch: MOODLE_401_STABLE, php: "7.4", suite: app, app-version: "latest-test" }
- { branch: MOODLE_400_STABLE, php: "8.0", suite: app, app-version: "4.3.0-test" }
- { branch: MOODLE_400_STABLE, php: "7.3", suite: app, app-version: "4.3.0-test" }
- { branch: MOODLE_311_STABLE, php: "8.0", suite: app, app-version: "4.3.0-test" }
- { branch: MOODLE_311_STABLE, php: "7.3", suite: app, app-version: "4.3.0-test" }
steps:
- name: Checking out moodle-docker
uses: actions/checkout@v4
- name: Checking out moodle
uses: actions/checkout@v4
with:
repository: moodle/moodle
path: moodle
ref: ${{ matrix.branch }}
- name: Prepare moodle-docker environment
run: |
cp config.docker-template.php moodle/config.php
export MOODLE_DOCKER_PHP_VERSION="${{ matrix.php }}"
export SUITE="${{ matrix.suite }}"
export MOODLE_DOCKER_APP_VERSION="${{ matrix.app-version }}"
tests/app-setup.sh
- name: Run moodle-docker tests
run: |
export MOODLE_DOCKER_APP_VERSION="${{ matrix.app-version }}"
export SUITE="${{ matrix.suite }}"
tests/app-test.sh
- name: Stop moodle-docker
run: |
export SUITE="${{ matrix.suite }}"
export MOODLE_DOCKER_APP_VERSION="${{ matrix.app-version }}"
tests/app-teardown.sh